Merge branch 'maint'

This commit is contained in:
Nicolas Goaziou 2015-08-14 22:36:51 +02:00
commit b9b500afd9
2 changed files with 8 additions and 8 deletions

View File

@ -58,10 +58,10 @@ development.
new mechanism to make sure all changes end up in the right new mechanism to make sure all changes end up in the right
place. place.
- Creating and pushing a change to the Org-mode core requires - Org mode no longer uses ChangeLog entries to document
you also to provide ChangeLog entries. Just press `C-x 4 a' changes. Instead, special commit messages are used, as
in each function or variable you have modified and describe described in the `CONTRIBUTE' file in the main Emacs
the change you made in the ChangeLog buffer/file. repository.
- Among other things, Org-mode is widely appreciated because - Among other things, Org-mode is widely appreciated because
of its simplicity, cleanness and consistency. We should try of its simplicity, cleanness and consistency. We should try

View File

@ -11127,18 +11127,18 @@ of matched result, with is either `dedicated' or `fuzzy'."
"\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]" "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
wspaceopt wspaceopt
"\\)")) "\\)"))
(sep (concat "\\(?:" wspace "+\\|" cookie "+\\)")) (sep (concat "\\(?:\\(?:" wspace "\\|" cookie "\\)+\\)"))
(re (concat (re (concat
org-outline-regexp-bol org-outline-regexp-bol
"\\(?:" org-todo-regexp "[ \t]+\\)?" "\\(?:" org-todo-regexp "[ \t]+\\)?"
"\\(?:\\[#.\\][ \t]+\\)?" "\\(?:\\[#.\\][ \t]+\\)?"
"\\(?:" org-comment-string "[ \t]+\\)?" "\\(?:" org-comment-string "[ \t]+\\)?"
sep "*" sep "?"
(let ((title (mapconcat #'regexp-quote (let ((title (mapconcat #'regexp-quote
words words
(concat sep "+")))) sep)))
(if starred (substring title 1) title)) (if starred (substring title 1) title))
sep "*" sep "?"
(org-re "\\(?:[ \t]+:[[:alnum:]_@#%%:]+:\\)?") (org-re "\\(?:[ \t]+:[[:alnum:]_@#%%:]+:\\)?")
"[ \t]*$"))) "[ \t]*$")))
(goto-char (point-min)) (goto-char (point-min))