From: kaoru Date: Fri, 28 Jul 2000 21:01:58 +0000 (+0000) Subject: * utils/ptexinfmt.el (texinfo-format-uref): Fixed. X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04d06859cfc5cd8778deb01bb359b6327a24e85a;p=elisp%2Fwanderlust.git * utils/ptexinfmt.el (texinfo-format-uref): Fixed. --- diff --git a/ChangeLog b/ChangeLog index db141ae..4e9da3f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ * utils/ptexinfmt.el: Disable broken check notice. + * utils/ptexinfmt.el (texinfo-format-uref): Fixed. + 2000-07-20 TAKAHASHI Kaoru * utils/ptexinfmt.el: Support @multitable. diff --git a/utils/ptexinfmt.el b/utils/ptexinfmt.el index 6811eb9..84372a9 100644 --- a/utils/ptexinfmt.el +++ b/utils/ptexinfmt.el @@ -418,8 +418,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) "'"))))