diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-07-02 14:04:25 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-07-02 14:04:25 +0000 |
commit | 1324d580c53774db37978d23e1436a6498ce8965 (patch) | |
tree | 01f5fa67f729f58a6014efafc64221759dcc13db /lisp/emulation/edt-mapper.el | |
parent | 3eb8967ae259216ad9aea026396205176a4f3237 (diff) | |
download | emacs-1324d580c53774db37978d23e1436a6498ce8965.tar.gz |
(edt-save-function-key-map, EDT-key-name): `defvar' to silence the
byte-compiler.
Diffstat (limited to 'lisp/emulation/edt-mapper.el')
-rw-r--r-- | lisp/emulation/edt-mapper.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/emulation/edt-mapper.el b/lisp/emulation/edt-mapper.el index e4943ff4a0a..5f824162676 100644 --- a/lisp/emulation/edt-mapper.el +++ b/lisp/emulation/edt-mapper.el @@ -113,7 +113,6 @@ (sit-for 600) (kill-emacs t))) - ;;; ;;; Decide Emacs Variant, GNU Emacs or XEmacs (aka Lucid Emacs). ;;; Determine Window System, and X Server Vendor (if appropriate). @@ -146,6 +145,11 @@ (defvar edt-return-seq nil) (defvar edt-term nil) +;; To silence the byte-compiler +(eval-when-compile + (defvar EDT-key-name) + (defvar edt-save-function-key-map)) + ;;; ;;; Determine Terminal Type (if appropriate). ;;; |