]> git.eshelyaron.com Git - emacs.git/commitdiff
(defgroup, defcustom): Add Emacs 19 compatibility definitions.
authorRichard M. Stallman <rms@gnu.org>
Sat, 30 Aug 1997 19:48:14 +0000 (19:48 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 30 Aug 1997 19:48:14 +0000 (19:48 +0000)
lisp/textmodes/texinfmt.el
lisp/textmodes/texinfo.el
lisp/textmodes/texnfo-upd.el

index 9976824403be6f3317dff2b837cad009dea910b2..90e682f4705c7c31c894ad93e26c51943f9ea00c 100644 (file)
 
 ;;; 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)
index eb2e5a60862254d9b6b98266855609df5491bb7a..73b06600aebbec22265275a56042acbfcba5bfa5 100644 (file)
 
 ;;; Code:
 
+(or (fboundp 'defgroup)
+    (defmacro defgroup (&rest ignore) nil))
+
+(or (fboundp 'defcustom)
+    (defmacro defcustom (var value doc &rest ignore)
+      `(defvar ,var ,value ,doc)))
+
 (defgroup texinfo nil
   "Texinfo Mode"
   :group 'docs)
index 90599d31f29d5b53debe10d59f2ba00d12c5880c..22d9fc605389c70b0f068d44ecda750342fa7023 100644 (file)
 \f
 ;;; Code:
 
+(or (fboundp 'defgroup)
+    (defmacro defgroup (&rest ignore) nil))
+
+(or (fboundp 'defcustom)
+    (defmacro defcustom (var value doc &rest ignore)
+      `(defvar ,var ,value ,doc)))
+
 (defvar texinfo-master-menu-header
   " --- The Detailed Node Listing ---\n"
   "String inserted before lower level entries in Texinfo master menu.