diff lisp/textmodes/texinfmt.el @ 19630:95743e18a01c

(defgroup, defcustom): Add Emacs 19 compatibility definitions.
author Richard M. Stallman <rms@gnu.org>
date Sat, 30 Aug 1997 19:48:14 +0000
parents a5e6856e865e
children 90460d1e2c3f
line wrap: on
line diff
--- a/lisp/textmodes/texinfmt.el	Sat Aug 30 19:46:24 1997 +0000
+++ b/lisp/textmodes/texinfmt.el	Sat Aug 30 19:48:14 1997 +0000
@@ -27,6 +27,13 @@
 
 ;;; Emacs lisp functions to convert Texinfo files to Info files.
 
+(or (fboundp 'defgroup)
+    (defmacro defgroup (&rest ignore) nil))
+
+(or (fboundp 'defcustom)
+    (defmacro defcustom (var value doc &rest ignore)
+      `(defvar ,var ,value ,doc)))
+
 (defvar texinfmt-version "2.37 of 24 May 1997")
 
 (defun texinfmt-version (&optional here)