diff options
author | Carsten Dominik <dominik@science.uva.nl> | 2009-01-27 11:39:48 +0000 |
---|---|---|
committer | Carsten Dominik <dominik@science.uva.nl> | 2009-01-27 11:39:48 +0000 |
commit | 65c439fd68997aa8f44cad817d09f97c35b0635c (patch) | |
tree | 4317105206b2f28e0b6f97e16c709face4ad5e87 /lisp/org/org-export-latex.el | |
parent | e6c815ae0953136a01aef0d5321b9c78ffcfbdfb (diff) | |
download | emacs-65c439fd68997aa8f44cad817d09f97c35b0635c.tar.gz emacs-65c439fd68997aa8f44cad817d09f97c35b0635c.tar.bz2 emacs-65c439fd68997aa8f44cad817d09f97c35b0635c.zip |
2009-01-27 Carsten Dominik <carsten.dominik@gmail.com>
* org.el (org-todo): Return correct state type even if the blocker
throws an error.
(org-modifier-cursor-error): Renamed from
`org-shiftcursor-error'.
(org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
(org-shiftmetadown): Call `org-modifier-cursor-error'.
* org-agenda.el (org-agenda-todo): Call `org-todo' interactively,
to get real errors from the blocker hook.
* org.el (org-shiftselect-error, org-call-for-shift-select): New
functions.
(org-set-visibility-according-to-property): Turn off the setting
of `org-show-entry-below', to avoid overruling a FOLDED visibility
property.
* org.el (org-support-shift-select): New option.
(org-shiftup, org-shiftdown, org-shiftright, org-shiftleft)
(org-shiftcontrolright, org-shiftcontrolleft): Support for shift
selection outside contexts.
* org-list.el (org-at-item-bullet-p): New function.
* org-jsinfo.el (org-infojs-handle-options): Remove unnecessary
variables.
* org-footnote.el (org-footnote-normalize): Remove unnecessary
variable.
(org-insert-footnote-reference-near-definition): Remove
unnecessary let form.
Diffstat (limited to 'lisp/org/org-export-latex.el')
-rw-r--r-- | lisp/org/org-export-latex.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/org/org-export-latex.el b/lisp/org/org-export-latex.el index a6958860276..ce79337b4f6 100644 --- a/lisp/org/org-export-latex.el +++ b/lisp/org/org-export-latex.el @@ -4,7 +4,7 @@ ;; ;; Emacs Lisp Archive Entry ;; Filename: org-export-latex.el -;; Version: 6.19a +;; Version: 6.19e ;; Author: Bastien Guerry <bzg AT altern DOT org> ;; Maintainer: Bastien Guerry <bzg AT altern DOT org> ;; Keywords: org, wp, tex @@ -434,7 +434,8 @@ when PUB-DIR is set, use this as the publishing directory." (region-p nil) (t (plist-get opt-plist :skip-before-1st-heading)))) (text (plist-get opt-plist :text)) - (first-lines (if skip "" (org-export-latex-first-lines opt-plist rbeg))) + (first-lines (if skip "" (org-export-latex-first-lines + opt-plist rbeg))) (coding-system (and (boundp 'buffer-file-coding-system) buffer-file-coding-system)) (coding-system-for-write (or org-export-latex-coding-system @@ -1306,7 +1307,7 @@ The conversion is made depending of STRING-BEFORE and STRING-AFTER." ;; Convert LaTeX to \LaTeX{} (goto-char (point-min)) - (let ((case-fold-search nil) rpl) + (let ((case-fold-search nil)) (while (re-search-forward "\\([^+_]\\)LaTeX" nil t) (org-if-unprotected (replace-match (org-export-latex-protect-string |