From 0945fea562ac499b7bce9da119f89bb13c5003af Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Thu, 26 Apr 2012 22:42:45 +0200 Subject: [PATCH] org-ctags.el: Fix an option default value back again. * org-ctags.el (org-ctags-new-topic-template): Fix the option default value back again. This option was "fixed" in Emacs emacs-24 branch: http://git.savannah.gnu.org/cgit/emacs.git/diff/lisp/org/org-protocol.el?h=emacs-24&id=0fc749f9 During an Emacs merge, I didn't check carefully and backported this change into Org maint branch. This is now fixed in Org and in emacs-24. --- lisp/org-ctags.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-ctags.el b/lisp/org-ctags.el index 5874646ff..48656190a 100644 --- a/lisp/org-ctags.el +++ b/lisp/org-ctags.el @@ -188,7 +188,7 @@ See the ctags documentation for more information.") Created as a local variable in each buffer.") (defcustom org-ctags-new-topic-template - "<<%t>>\n\n\n\n\n\n" + "* <<%t>>\n\n\n\n\n\n" "Text to insert when creating a new org file via opening a hyperlink. The following patterns are replaced in the string: `%t' - replaced with the capitalized title of the hyperlink" -- 2.11.4.GIT