emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 9926e81: Allow using @@ in @uref in texinfo


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master 9926e81: Allow using @@ in @uref in texinfo
Date: Mon, 8 Jul 2019 22:03:35 -0400 (EDT)

branch: master
commit 9926e8112605049fe3c7001606bf7945b81a631b
Author: Katsumi Yamaoka <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Allow using @@ in @uref in texinfo
    
    * lisp/textmodes/texinfmt.el (texinfo-format-uref): Allow using @@
    in @uref (bug#36186) to allow things like
    @uref{mailto:foo@@example.com}.
---
 lisp/textmodes/texinfmt.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el
index 4110dfb..3c32037 100644
--- a/lisp/textmodes/texinfmt.el
+++ b/lisp/textmodes/texinfmt.el
@@ -1286,8 +1286,7 @@ otherwise, insert URL-TITLE followed by URL in 
parentheses."
     ;; if url-title
     (if (nth 1 args)
         (insert  (nth 1 args) " (" (nth 0 args) ")")
-      (insert "`" (nth 0 args) "'"))
-    (goto-char texinfo-command-start)))
+      (insert "`" (nth 0 args) "'"))))
 
 
 ;;; Section headings



reply via email to

[Prev in Thread] Current Thread [Next in Thread]