Merge branch 'maint'
This commit is contained in:
commit
73445c0fab
|
@ -12,9 +12,9 @@
|
|||
|
||||
# Contact Info
|
||||
#+texinfo_header: @set MAINTAINERSITE @uref{https://orgmode.org,maintainers webpage}
|
||||
#+texinfo_header: @set MAINTAINER Carsten Dominik
|
||||
#+texinfo_header: @set MAINTAINEREMAIL @email{carsten at orgmode dot org}
|
||||
#+texinfo_header: @set MAINTAINERCONTACT @uref{mailto:carsten at orgmode dot org,contact the maintainer}
|
||||
#+texinfo_header: @set MAINTAINER Bastien Guerry
|
||||
#+texinfo_header: @set MAINTAINEREMAIL @email{bzg@gnu.org}
|
||||
#+texinfo_header: @set MAINTAINERCONTACT @uref{mailto:bzg@gnu.org,contact the maintainer}
|
||||
|
||||
#+options: H:4 num:t toc:t author:t \n:nil ::t |:t ^:nil -:t f:t *:t <:t e:t ':t
|
||||
#+options: d:nil todo:nil pri:nil tags:not-in-toc stat:nil broken-links:mark
|
||||
|
|
|
@ -2616,7 +2616,7 @@ support in a file, use
|
|||
|
||||
#+export_file_name: orgguide.texi
|
||||
|
||||
#+texinfo_dir_category: Emacs
|
||||
#+texinfo_dir_category: Emacs editing modes
|
||||
#+texinfo_dir_title: Org Guide: (orgguide)
|
||||
#+texinfo_dir_desc: Abbreviated Org mode manual
|
||||
|
||||
|
|
|
@ -21175,7 +21175,7 @@ modify this GNU manual."
|
|||
|
||||
#+export_file_name: org.texi
|
||||
|
||||
#+texinfo_dir_category: Emacs
|
||||
#+texinfo_dir_category: Emacs editing modes
|
||||
#+texinfo_dir_title: Org Mode: (org)
|
||||
#+texinfo_dir_desc: Outline-based notes management and organizer
|
||||
|
||||
|
|
|
@ -218,7 +218,8 @@ and then loads the resulting file using `load-file'. With
|
|||
optional prefix argument COMPILE, the tangled Emacs Lisp file is
|
||||
byte-compiled before it is loaded."
|
||||
(interactive "fFile to load: \nP")
|
||||
(let* ((tangled-file (concat (file-name-sans-extension file) ".el")))
|
||||
(let* ((file (file-truename file))
|
||||
(tangled-file (concat (file-name-sans-extension file) ".el")))
|
||||
;; Tangle only if the Org file is newer than the Elisp file.
|
||||
(unless (org-file-newer-than-p
|
||||
tangled-file
|
||||
|
|
Loading…
Reference in New Issue