From 3d4494fa5eb967f2910b1a67b146293d63a92b38 Mon Sep 17 00:00:00 2001 From: kaoru Date: Tue, 20 Jul 2004 09:44:31 +0000 Subject: [PATCH] * ptexinfmt.el: Support @s. --- utils/ChangeLog | 4 ++++ utils/ptexinfmt.el | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/utils/ChangeLog b/utils/ChangeLog index 08846e0..5cb3c80 100644 --- a/utils/ChangeLog +++ b/utils/ChangeLog @@ -1,3 +1,7 @@ +2004-07-20 TAKAHASHI Kaoru + + * ptexinfmt.el: Support @s. + 2004-05-22 Hiroya Murata * bbdb-wl.el (bbdb-wl-get-addresses-1): Use set-buffer-multibyte diff --git a/utils/ptexinfmt.el b/utils/ptexinfmt.el index 41690f1..7765382 100644 --- a/utils/ptexinfmt.el +++ b/utils/ptexinfmt.el @@ -36,6 +36,21 @@ ;; Modified by Yamaoka not to use APEL functions. +;; Unimplemented command: +;; @float, @caption, @shortcaption, @listoffloats +;; @deftypecv[x] +;; @headitem +;; @comma{} +;; @quotation (optional arguments) +;; @acronym (optional argument) +;; @dofirstparagraphindent +;; @indent +;; @verbatiminclude +;; @\ +;; @definfoenclose +;; @deftypeivar +;; @deftypeop + ;;; Code: (require 'backquote) @@ -200,6 +215,9 @@ DOCSTRING will be printed if ASSERTION is nil and (put 'page 'texinfo-format 'texinfo-discard-line) (put 'hyphenation 'texinfo-format 'texinfo-discard-command-and-arg) +;; @s{} (makeinfo 4.8 or later) +(put 's 'texinfo-format 'texinfo-format-noop) + ;; @tie{} (makeinfo 4.3 or later) (put 'tie 'texinfo-format 'texinfo-format-tie) (ptexinfmt-defun-if-void texinfo-format-tie () -- 1.7.10.4