emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/textmodes/artist.el


From: Sam Steingold
Subject: [Emacs-diffs] Changes to emacs/lisp/textmodes/artist.el
Date: Tue, 27 Nov 2001 10:53:03 -0500

Index: emacs/lisp/textmodes/artist.el
diff -u emacs/lisp/textmodes/artist.el:1.7 emacs/lisp/textmodes/artist.el:1.8
--- emacs/lisp/textmodes/artist.el:1.7  Fri Oct 26 05:50:51 2001
+++ emacs/lisp/textmodes/artist.el      Tue Nov 27 10:52:51 2001
@@ -192,18 +192,18 @@
 
 
 (eval-and-compile
-  (condition-case ()
-      (require 'custom)
-    (error nil))
-  (if (and (featurep 'custom) (fboundp 'custom-declare-variable))
-      nil ;; We've got what we needed
-    ;; We have the old custom-library, hack around it!
-    (defmacro defgroup (&rest args)
-      nil)
-    (defmacro defface (var values doc &rest args)
-       (` (make-face (, var))))
-    (defmacro defcustom (var value doc &rest args) 
-      (` (defvar (, var) (, value) (, doc))))))
+ (condition-case ()
+     (require 'custom)
+   (error nil))
+ (if (and (featurep 'custom) (fboundp 'custom-declare-variable))
+     nil ;; We've got what we needed
+     ;; We have the old custom-library, hack around it!
+     (defmacro defgroup (&rest args)
+       nil)
+     (defmacro defface (var values doc &rest args)
+       `(make-face ,var))
+     (defmacro defcustom (var value doc &rest args) 
+       `(defvar ,var ,value ,doc))))
 
 ;; User options
 ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv



reply via email to

[Prev in Thread] Current Thread [Next in Thread]