From 74729cef73f9ee5e2e3ccff7da5b1c9c497b579d Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 12 Apr 2004 04:54:21 +0000 Subject: [PATCH] Synch to Wanderlust 200404120448. --- ChangeLog | 2 +- texi/ptexinfmt.el | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 47ce3bc..7b1ca1c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ 2004-04-12 TAKAHASHI Kaoru - * texi/ptexinfmt.el: Support @indicateurl, @LaTeX. + * texi/ptexinfmt.el: Support @indicateurl, @LaTeX, @ordf, @ordm. @url is now a synonym for @uref. 2004-04-08 Katsumi Yamaoka diff --git a/texi/ptexinfmt.el b/texi/ptexinfmt.el index bdb1d89..136bae2 100644 --- a/texi/ptexinfmt.el +++ b/texi/ptexinfmt.el @@ -392,6 +392,18 @@ For example, @verb\{|@|\} results in @ and (texinfo-parse-arg-discard) (insert "#")) +;; @ordf{} ==> a Spanish feminine +(put 'ordf 'texinfo-format 'texinfo-format-ordf) +(ptexinfmt-defun-if-void texinfo-format-ordf () + (texinfo-parse-arg-discard) + (insert "o")) + +;; @ordm{} ==> o Spanish masculine +(put 'ordm 'texinfo-format 'texinfo-format-ordm) +(ptexinfmt-defun-if-void texinfo-format-ordm () + (texinfo-parse-arg-discard) + (insert "o")) + ;; @OE{} ==> OE French-OE-ligature (put 'OE 'texinfo-format 'texinfo-format-French-OE-ligature) (ptexinfmt-defun-if-void texinfo-format-French-OE-ligature () -- 1.7.10.4