Release 5.13h

This commit is contained in:
Carsten Dominik 2008-01-31 11:37:33 +01:00
parent 1bf1a4d4b2
commit 93bf464c3d
5 changed files with 19 additions and 10 deletions

View File

@ -1,12 +1,18 @@
2007-10-25 Carsten Dominik <dominik@science.uva.nl>
2007-10-26 Carsten Dominik <dominik@science.uva.nl>
* org.el (org-todo): Restore match data before doing the
replacement.
* org.el (org-select-remember-template): New function.
(org-remember-apply-template): Use
`org-select-remember-template'.
-----------------------------------------------------------------------
Installed as 5.13f
Installed as 5.13g
2007-10-25 Carsten Dominik <dominik@science.uva.nl>
* org.el (org-remember-handler): Make sure the amount of
whitespace after the note is right.
2007-10-24 Carsten Dominik <dominik@science.uva.nl>
* org-publish.el (org-publish-get-plist-from-filename): Use `mapc'

View File

@ -1,6 +1,6 @@
;;; org-export-latex.el --- LaTeX exporter for org-mode
;;; org-export-latex.el --- LaTeX exporter for org-mode
;;
;; copyright (c) 2007 free software foundation, inc.
;; Copyright (c) 2007 free software foundation, inc.
;;
;; Emacs Lisp Archive Entry
;; Filename: org-export-latex.el

11
org.el
View File

@ -5,7 +5,7 @@
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp
;; Homepage: http://orgmode.org
;; Version: 5.13g
;; Version: 5.13h
;;
;; This file is part of GNU Emacs.
;;
@ -83,7 +83,7 @@
;;; Version
(defconst org-version "5.13g"
(defconst org-version "5.13h"
"The version number of the file org.el.")
(defun org-version ()
(interactive)
@ -23093,6 +23093,8 @@ command."
(?\C-b . org-export-as-html-and-open)
(?h . org-export-as-html)
(?H . org-export-as-html-to-buffer)
(?l . org-export-as-latex)
(?L . org-export-as-latex-to-buffer)
(?R . org-export-region-as-html)
(?x . org-export-as-xoxo)))))
(keepp (equal type ?\ ))
@ -23929,7 +23931,7 @@ lang=\"%s\" xml:lang=\"%s\">
(pop local-list-num))
(setq local-list-indent nil
in-local-list nil))
(org-html-level-start 0 nil umax
(org-html-level-start 1 nil umax
(and org-export-with-toc (<= level umax))
head-count)
@ -24435,7 +24437,8 @@ stacked delimiters is N. Escaping delimiters is not possible."
When TITLE is nil, just close all open levels."
(org-close-par-maybe)
(let ((l org-level-max))
(while (>= l (1+ level))
(while (>= l level)
; (while (>= l (1+ level))
(if (aref org-levels-open (1- l))
(progn
(org-html-level-close l umax)

BIN
org.pdf

Binary file not shown.

Binary file not shown.