aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel LaLiberte <[email protected]>1994-04-09 22:19:10 +0000
committerDaniel LaLiberte <[email protected]>1994-04-09 22:19:10 +0000
commit4633707b6b4aed6611a0f6192c4fff86cd595d83 (patch)
tree2b6bd2f8e1a39b30fa98a9f2be2f85694366c260
parentd8b3a65d6c23ad7ad7d42e60391ca5a987897f4c (diff)
Jumping up to new revision.
Simplify definition of defalias for Emacs 18.
-rw-r--r--lisp/emacs-lisp/cust-print.el17
1 files changed, 8 insertions, 9 deletions
diff --git a/lisp/emacs-lisp/cust-print.el b/lisp/emacs-lisp/cust-print.el
index 6b9ae19269..0c80b6c8bd 100644
--- a/lisp/emacs-lisp/cust-print.el
+++ b/lisp/emacs-lisp/cust-print.el
@@ -9,12 +9,7 @@
;; LCD Archive Entry:
;; cust-print|Daniel LaLiberte|[email protected]
;; |Handle print-level, print-circle and more.
-;; |$Date: 1994/03/24 20:26:05 $|1.5|
-
-;; Version 1.5 ($Revision: 1.13 $ from Emacs 19)
-
-;; Emacs maintainers: please inform me of any changes to this code.
-;; Better yet, ask me first.
+;; |$Date: 1994/04/05 21:05:09 $|$Revision: 1.14 $|
;; This file is part of GNU Emacs.
@@ -33,7 +28,11 @@
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
;;; ===============================
+;;; $Header: $
;;; $Log: cust-print.el,v $
+;;; Revision 1.14 1994/04/05 21:05:09 liberte
+;;; Change install- and uninstall- to -install and -uninstall.
+;;;
;;; Revision 1.13 1994/03/24 20:26:05 liberte
;;; Change "internal" to "original" throughout.
;;; (add-custom-printer, delete-custom-printer) replace customizers.
@@ -162,9 +161,8 @@
;; Emacs 18 doesnt have defalias.
;; Provide def for byte compiler.
-(defun defalias (symbol func) (fset symbol func))
-;; Better def when loaded.
-(or (fboundp 'defalias) (fset 'defalias 'fset))
+(eval-and-compile
+ (or (fboundp 'defalias) (fset 'defalias 'fset)))
;; Variables:
@@ -724,3 +722,4 @@ See `custom-format' for the details."
(provide 'cust-print)
;;; cust-print.el ends here
+