Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
Conflicts: lisp/ChangeLog
This commit is contained in:
commit
31b19b1afc
|
@ -3,6 +3,28 @@
|
||||||
* org-html.el (org-html-level-start): Catch the case that target
|
* org-html.el (org-html-level-start): Catch the case that target
|
||||||
might be nil.
|
might be nil.
|
||||||
|
|
||||||
|
2010-03-31 Dan Davison <davison@stats.ox.ac.uk>
|
||||||
|
|
||||||
|
* org.el (org-appearance): Change Customize group variable name
|
||||||
|
from org-font-lock to org-appearance, and change tag from "Org
|
||||||
|
Font Lock" to "Org Appearance"
|
||||||
|
(org-odd-levels-only): Change Customize group variable name
|
||||||
|
(org-level-color-stars-only): Change Customize group variable name
|
||||||
|
(org-hide-leading-stars): Change Customize group variable name
|
||||||
|
(org-hidden-keywords): Change Customize group variable name
|
||||||
|
(org-fontify-done-headline): Change Customize group variable name
|
||||||
|
(org-fontify-emphasized-text): Change Customize group variable name
|
||||||
|
(org-fontify-whole-heading-line): Change Customize group variable name
|
||||||
|
(org-highlight-latex-fragments-and-specials): Change Customize
|
||||||
|
group variable name
|
||||||
|
(org-hide-emphasis-markers): Change Customize group variable name
|
||||||
|
(org-emphasis-alist): Change Customize group variable name
|
||||||
|
(org-emphasis-regexp-components): Change Customize group variable
|
||||||
|
name
|
||||||
|
(org-modules): Remove mention of org-R
|
||||||
|
|
||||||
|
* org-faces.el (org-faces): Change Customize group variable name
|
||||||
|
|
||||||
2010-03-29 Carsten Dominik <carsten.dominik@gmail.com>
|
2010-03-29 Carsten Dominik <carsten.dominik@gmail.com>
|
||||||
|
|
||||||
* org-agenda.el (org-diary-last-run-time): New variable.
|
* org-agenda.el (org-diary-last-run-time): New variable.
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
(defgroup org-faces nil
|
(defgroup org-faces nil
|
||||||
"Faces in Org-mode."
|
"Faces in Org-mode."
|
||||||
:tag "Org Faces"
|
:tag "Org Faces"
|
||||||
:group 'org-font-lock)
|
:group 'org-appearance)
|
||||||
|
|
||||||
(defface org-hide
|
(defface org-hide
|
||||||
'((((background light)) (:foreground "white"))
|
'((((background light)) (:foreground "white"))
|
||||||
|
|
|
@ -1529,7 +1529,8 @@ lang=\"%s\" xml:lang=\"%s\">
|
||||||
"Create image tag with source and attributes."
|
"Create image tag with source and attributes."
|
||||||
(save-match-data
|
(save-match-data
|
||||||
(if (string-match "^ltxpng/" src)
|
(if (string-match "^ltxpng/" src)
|
||||||
(format "<img src=\"%s\"/>" src)
|
(format "<img src=\"%s\" alt=\"%s\"/>"
|
||||||
|
src (org-find-text-property-in-string 'org-latex-src src))
|
||||||
(let* ((caption (org-find-text-property-in-string 'org-caption src))
|
(let* ((caption (org-find-text-property-in-string 'org-caption src))
|
||||||
(attr (org-find-text-property-in-string 'org-attributes src))
|
(attr (org-find-text-property-in-string 'org-attributes src))
|
||||||
(label (org-find-text-property-in-string 'org-label src)))
|
(label (org-find-text-property-in-string 'org-label src)))
|
||||||
|
|
33
lisp/org.el
33
lisp/org.el
|
@ -230,7 +230,6 @@ to add the symbol `xyz', and the package must have a call to
|
||||||
(const :tag "C man: Support for links to manpages in Org-mode" org-man)
|
(const :tag "C man: Support for links to manpages in Org-mode" org-man)
|
||||||
(const :tag "C mtags: Support for muse-like tags" org-mtags)
|
(const :tag "C mtags: Support for muse-like tags" org-mtags)
|
||||||
(const :tag "C panel: Simple routines for us with bad memory" org-panel)
|
(const :tag "C panel: Simple routines for us with bad memory" org-panel)
|
||||||
(const :tag "C R: Computation using the R language" org-R)
|
|
||||||
(const :tag "C registry: A registry for Org-mode links" org-registry)
|
(const :tag "C registry: A registry for Org-mode links" org-registry)
|
||||||
(const :tag "C org2rem: Convert org appointments into reminders" org2rem)
|
(const :tag "C org2rem: Convert org appointments into reminders" org2rem)
|
||||||
(const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
|
(const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
|
||||||
|
@ -791,7 +790,7 @@ lines to the buffer:
|
||||||
#+STARTUP: odd
|
#+STARTUP: odd
|
||||||
#+STARTUP: oddeven"
|
#+STARTUP: oddeven"
|
||||||
:group 'org-edit-structure
|
:group 'org-edit-structure
|
||||||
:group 'org-font-lock
|
:group 'org-appearance
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
(defcustom org-adapt-indentation t
|
(defcustom org-adapt-indentation t
|
||||||
|
@ -2946,9 +2945,9 @@ Each cell is of the format \( \"option\" . \"package\" \)."
|
||||||
(string :tag "option")
|
(string :tag "option")
|
||||||
(string :tag "package"))))
|
(string :tag "package"))))
|
||||||
|
|
||||||
(defgroup org-font-lock nil
|
(defgroup org-appearance nil
|
||||||
"Font-lock settings for highlighting in Org-mode."
|
"Settings for Org-mode appearance."
|
||||||
:tag "Org Font Lock"
|
:tag "Org Appearance"
|
||||||
:group 'org)
|
:group 'org)
|
||||||
|
|
||||||
(defcustom org-level-color-stars-only nil
|
(defcustom org-level-color-stars-only nil
|
||||||
|
@ -2956,7 +2955,7 @@ Each cell is of the format \( \"option\" . \"package\" \)."
|
||||||
When nil, the entire headline is fontified.
|
When nil, the entire headline is fontified.
|
||||||
Changing it requires restart of `font-lock-mode' to become effective
|
Changing it requires restart of `font-lock-mode' to become effective
|
||||||
also in regions already fontified."
|
also in regions already fontified."
|
||||||
:group 'org-font-lock
|
:group 'org-appearance
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
(defcustom org-hide-leading-stars nil
|
(defcustom org-hide-leading-stars nil
|
||||||
|
@ -2972,7 +2971,7 @@ lines to the buffer:
|
||||||
|
|
||||||
#+STARTUP: hidestars
|
#+STARTUP: hidestars
|
||||||
#+STARTUP: showstars"
|
#+STARTUP: showstars"
|
||||||
:group 'org-font-lock
|
:group 'org-appearance
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
(defcustom org-hidden-keywords nil
|
(defcustom org-hidden-keywords nil
|
||||||
|
@ -2980,7 +2979,7 @@ lines to the buffer:
|
||||||
For example, add #+TITLE to this list in order to make the
|
For example, add #+TITLE to this list in order to make the
|
||||||
document title appear in the buffer without the initial #+TITLE:
|
document title appear in the buffer without the initial #+TITLE:
|
||||||
keyword."
|
keyword."
|
||||||
:group 'org-font-lock
|
:group 'org-appearance
|
||||||
:type '(set (const :tag "#+AUTHOR" author)
|
:type '(set (const :tag "#+AUTHOR" author)
|
||||||
(const :tag "#+DATE" date)
|
(const :tag "#+DATE" date)
|
||||||
(const :tag "#+EMAIL" email)
|
(const :tag "#+EMAIL" email)
|
||||||
|
@ -2991,30 +2990,30 @@ keyword."
|
||||||
Normally, only the TODO/DONE keyword indicates the state of a headline.
|
Normally, only the TODO/DONE keyword indicates the state of a headline.
|
||||||
When this is non-nil, the headline after the keyword is set to the
|
When this is non-nil, the headline after the keyword is set to the
|
||||||
`org-headline-done' as an additional indication."
|
`org-headline-done' as an additional indication."
|
||||||
:group 'org-font-lock
|
:group 'org-appearance
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
(defcustom org-fontify-emphasized-text t
|
(defcustom org-fontify-emphasized-text t
|
||||||
"Non-nil means fontify *bold*, /italic/ and _underlined_ text.
|
"Non-nil means fontify *bold*, /italic/ and _underlined_ text.
|
||||||
Changing this variable requires a restart of Emacs to take effect."
|
Changing this variable requires a restart of Emacs to take effect."
|
||||||
:group 'org-font-lock
|
:group 'org-appearance
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
(defcustom org-fontify-whole-heading-line nil
|
(defcustom org-fontify-whole-heading-line nil
|
||||||
"Non-nil means fontify the whole line for headings.
|
"Non-nil means fontify the whole line for headings.
|
||||||
This is useful when setting a background color for the
|
This is useful when setting a background color for the
|
||||||
org-level-* faces."
|
org-level-* faces."
|
||||||
:group 'org-font-lock
|
:group 'org-appearance
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
(defcustom org-highlight-latex-fragments-and-specials nil
|
(defcustom org-highlight-latex-fragments-and-specials nil
|
||||||
"Non-nil means fontify what is treated specially by the exporters."
|
"Non-nil means fontify what is treated specially by the exporters."
|
||||||
:group 'org-font-lock
|
:group 'org-appearance
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
(defcustom org-hide-emphasis-markers nil
|
(defcustom org-hide-emphasis-markers nil
|
||||||
"Non-nil mean font-lock should hide the emphasis marker characters."
|
"Non-nil mean font-lock should hide the emphasis marker characters."
|
||||||
:group 'org-font-lock
|
:group 'org-appearance
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
(defvar org-emph-re nil
|
(defvar org-emph-re nil
|
||||||
|
@ -3095,7 +3094,7 @@ body-regexp A regexp like \".\" to match a body character. Don't use
|
||||||
newline The maximum number of newlines allowed in an emphasis exp.
|
newline The maximum number of newlines allowed in an emphasis exp.
|
||||||
|
|
||||||
Use customize to modify this, or restart Emacs after changing it."
|
Use customize to modify this, or restart Emacs after changing it."
|
||||||
:group 'org-font-lock
|
:group 'org-appearance
|
||||||
:set 'org-set-emph-re
|
:set 'org-set-emph-re
|
||||||
:type '(list
|
:type '(list
|
||||||
(sexp :tag "Allowed chars in pre ")
|
(sexp :tag "Allowed chars in pre ")
|
||||||
|
@ -3121,7 +3120,7 @@ characters, the face to be used by font-lock for highlighting in Org-mode
|
||||||
Emacs buffers, and the HTML tags to be used for this.
|
Emacs buffers, and the HTML tags to be used for this.
|
||||||
For LaTeX export, see the variable `org-export-latex-emphasis-alist'.
|
For LaTeX export, see the variable `org-export-latex-emphasis-alist'.
|
||||||
Use customize to modify this, or restart Emacs after changing it."
|
Use customize to modify this, or restart Emacs after changing it."
|
||||||
:group 'org-font-lock
|
:group 'org-appearance
|
||||||
:set 'org-set-emph-re
|
:set 'org-set-emph-re
|
||||||
:type '(repeat
|
:type '(repeat
|
||||||
(list
|
(list
|
||||||
|
@ -15183,7 +15182,9 @@ Some of the options can be changed using the variable
|
||||||
(push ov org-latex-fragment-image-overlays)
|
(push ov org-latex-fragment-image-overlays)
|
||||||
(goto-char end))
|
(goto-char end))
|
||||||
(delete-region beg end)
|
(delete-region beg end)
|
||||||
(insert link))))))))
|
(insert (org-add-props link
|
||||||
|
(list 'org-latex-src
|
||||||
|
(replace-regexp-in-string "\"" "" txt)))))))))))
|
||||||
|
|
||||||
;; This function borrows from Ganesh Swami's latex2png.el
|
;; This function borrows from Ganesh Swami's latex2png.el
|
||||||
(defun org-create-formula-image (string tofile options buffer)
|
(defun org-create-formula-image (string tofile options buffer)
|
||||||
|
|
Loading…
Reference in New Issue