comparison lisp/textmodes/texinfmt.el @ 87384:20bb7aaa7b12

* calculator.el: * dframe.el: * iswitchb.el: * whitespace.el: * winner.el: * emacs-lisp/checkdoc.el: * mail/feedmail.el: * net/quickurl.el: * obsolete/fast-lock.el: * play/5x5.el: * progmodes/delphi.el: * progmodes/idlw-shell.el: * progmodes/idlwave.el: * textmodes/artist.el: * textmodes/ispell.el: * textmodes/texinfmt.el: * textmodes/texinfo.el: Remove obsolete definitions of backward compatibility macros for defcustom, defgroup, defface, when, unless, with-current-buffer and with-temp-message.
author Dan Nicolaescu <dann@ics.uci.edu>
date Tue, 25 Dec 2007 19:21:38 +0000
parents 1d87492bc6e0
children 107ccd98fa12 56a72e2bd635
comparison
equal deleted inserted replaced
87383:e8864ce8543f 87384:20bb7aaa7b12
27 ;;; Commentary: 27 ;;; Commentary:
28 28
29 ;;; Code: 29 ;;; Code:
30 30
31 ;;; Emacs lisp functions to convert Texinfo files to Info files. 31 ;;; Emacs lisp functions to convert Texinfo files to Info files.
32
33 (or (fboundp 'defgroup)
34 (defmacro defgroup (&rest ignore) nil))
35
36 (or (fboundp 'defcustom)
37 (defmacro defcustom (var value doc &rest ignore)
38 `(defvar ,var ,value ,doc)))
39 32
40 (defvar texinfmt-version "2.42 of 7 Jul 2006") 33 (defvar texinfmt-version "2.42 of 7 Jul 2006")
41 34
42 (defun texinfmt-version (&optional here) 35 (defun texinfmt-version (&optional here)
43 "Show the version of texinfmt.el in the minibuffer. 36 "Show the version of texinfmt.el in the minibuffer.