comparison 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
comparison
equal deleted inserted replaced
19629:70c989c729f1 19630:95743e18a01c
24 ;; Boston, MA 02111-1307, USA. 24 ;; Boston, MA 02111-1307, USA.
25 25
26 ;;; Code: 26 ;;; Code:
27 27
28 ;;; Emacs lisp functions to convert Texinfo files to Info files. 28 ;;; Emacs lisp functions to convert Texinfo files to Info files.
29
30 (or (fboundp 'defgroup)
31 (defmacro defgroup (&rest ignore) nil))
32
33 (or (fboundp 'defcustom)
34 (defmacro defcustom (var value doc &rest ignore)
35 `(defvar ,var ,value ,doc)))
29 36
30 (defvar texinfmt-version "2.37 of 24 May 1997") 37 (defvar texinfmt-version "2.37 of 24 May 1997")
31 38
32 (defun texinfmt-version (&optional here) 39 (defun texinfmt-version (&optional here)
33 "Show the version of texinfmt.el in the minibuffer. 40 "Show the version of texinfmt.el in the minibuffer.