Damon Lipparelli <lipp(a)primus.com> writes:
Does anyone have a NT native version of "makeinfo.exe"?
I'm having trouble
building the latest version of "man/xemacs-faq.texi" with XEmacs itself.
I recently did some hack on texinfmt.el. I'd like to fix
the bug if it's found. This time, I can easily reproduce
the problem and here's the fix for it. It would be nicer if
you'd file a bug report for that failure.
2000-01-28 Yoshiki Hayashi <yoshiki(a)xemacs.org>
* texinfmt.el (texinfo-format-uref): Don't parse argument twice.
Index: texinfmt.el
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs-packages/wp/texinfo/texinfmt.el,v
retrieving revision 1.6
diff -u -r1.6 texinfmt.el
--- texinfmt.el 2000/01/20 09:14:23 1.6
+++ texinfmt.el 2000/01/28 07:17:35
@@ -1283,7 +1283,11 @@
(if (nth 1 args)
(insert (nth 1 args) " (" (nth 0 args) ")")
(insert "`" (nth 0 args) "'"))
- (goto-char texinfo-command-start)))
+ ;; XEmacs change
+ ;; No need to parse argument. It's already expanded by
+ ;; texinfo-format-parse-args.
+;; (goto-char texinfo-command-start)
+ ))
;;; Section headings
--
Yoshiki Hayashi