diff options
| author | David Aspinall | 1998-12-14 15:13:20 +0000 |
|---|---|---|
| committer | David Aspinall | 1998-12-14 15:13:20 +0000 |
| commit | 61237df6d2f941d43c8912e3de45bed70f676f4d (patch) | |
| tree | ca2a51aff8f6112538b802d2ca4f6900273df0b7 | |
| parent | 8c5354db713be2ae16e4e01dfe77343b18012a4c (diff) | |
Reordered require of cl. Changed deflocal definition.
| -rw-r--r-- | generic/proof.el | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/generic/proof.el b/generic/proof.el index 57ab980e..009932b7 100644 --- a/generic/proof.el +++ b/generic/proof.el @@ -11,13 +11,18 @@ (defmacro deflocal (var value &optional docstring) "Define a buffer local variable VAR with default value VALUE." - (list 'progn - (list 'defvar var 'nil docstring) - (list 'make-variable-buffer-local (list 'quote var)) - (list 'setq-default var value))) + `(progn + (defvar ,var nil ,docstring) + (make-variable-buffer-local (quote ,var)) + (setq-default ,var ,value))) (require 'proof-site) ; site config +;; cl is dumped with my XEmacs 20.4, but not FSF Emacs 20.2. +(require 'cl) + + + (require 'proof-config) ; configuration variables (require 'proof-splash) ; splash screen @@ -26,9 +31,6 @@ ;;; Emacs libraries ;;; -;; cl is dumped with my XEmacs 20.4, but not FSF Emacs 20.2. -(require 'cl) - ;; browse-url function doesn't seem to be autoloaded in ;; XEmacs 20.4, but it is in FSF Emacs 20.2. (or (fboundp 'browse-url) |
