From: yamaoka Date: Mon, 12 Apr 2004 04:36:28 +0000 (+0000) Subject: Synch to Wanderlust 200404120422. X-Git-Tag: t-gnus-6_17_4-quimby-~980 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=34d5b05c848b7f7783babfd0b4f16cd1ee646c4b;p=elisp%2Fgnus.git- Synch to Wanderlust 200404120422. --- diff --git a/ChangeLog b/ChangeLog index 461c23e..47ce3bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-04-12 TAKAHASHI Kaoru + + * texi/ptexinfmt.el: Support @indicateurl, @LaTeX. + @url is now a synonym for @uref. + 2004-04-08 Katsumi Yamaoka * lisp/gnus-util.el (gnus-set-work-buffer): Set buffer multibyte. diff --git a/texi/ptexinfmt.el b/texi/ptexinfmt.el index a36908b..bdb1d89 100644 --- a/texi/ptexinfmt.el +++ b/texi/ptexinfmt.el @@ -306,11 +306,13 @@ DOCSTRING will be printed if ASSERTION is nil and ;;; Marking -;; @url, @env, @command -(put 'url 'texinfo-format 'texinfo-format-code) +;; @indicateurl, @url, @env, @command, (put 'env 'texinfo-format 'texinfo-format-code) (put 'command 'texinfo-format 'texinfo-format-code) +(put 'indicateurl 'texinfo-format 'texinfo-format-code) +(put 'url 'texinfo-format 'texinfo-format-uref) ; Texinfo 4.7 + ;; @acronym (put 'acronym 'texinfo-format 'texinfo-format-var) @@ -372,13 +374,18 @@ For example, @verb\{|@|\} results in @ and (delete-char 1)) -;;; Accents and Special characters -;; @registeredsymbol{} ==> (R) -(put 'pounds 'texinfo-format 'texinfo-format-registeredsymbol) +;;; @LaTeX, @registeredsymbol{} +(put 'LaTeX 'texinfo-format 'texinfo-format-LaTeX) +(ptexinfmt-defun-if-void texinfo-format-LaTeX () + (texinfo-parse-arg-discard) + (insert "LaTeX")) + +(put 'registeredsymbol 'texinfo-format 'texinfo-format-registeredsymbol) (ptexinfmt-defun-if-void texinfo-format-registeredsymbol () (texinfo-parse-arg-discard) (insert "(R)")) +;;; Accents and Special characters ;; @pounds{} ==> # Pounds Sterling (put 'pounds 'texinfo-format 'texinfo-format-pounds) (ptexinfmt-defun-if-void texinfo-format-pounds ()