aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation
diff options
context:
space:
mode:
authorStefan Monnier2012-05-12 23:05:06 -0400
committerStefan Monnier2012-05-12 23:05:06 -0400
commite5bd0a28953dcf6c3b811a7d17e7664c8d664a7c (patch)
treefafff16925c9be51ccf3bf1a8215b0756941ecdc /lisp/emulation
parent9e6b06ed73b88a89ba1e31aaf8f3f7afe20f6cdd (diff)
downloademacs-e5bd0a28953dcf6c3b811a7d17e7664c8d664a7c.tar.gz
emacs-e5bd0a28953dcf6c3b811a7d17e7664c8d664a7c.zip
Move define-obsolete-variable-alias before the var's definition.
* lisp/vc/log-edit.el (vc-comment-ring, vc-comment-ring-index): * lisp/tooltip.el (tooltip-hook): * lisp/textmodes/reftex-toc.el (reftex-toc-map): * lisp/textmodes/reftex-sel.el (reftex-select-label-map) (reftex-select-bib-map): * lisp/textmodes/reftex-index.el (reftex-index-map) (reftex-index-phrases-map): * lisp/speedbar.el (speedbar-syntax-table, speedbar-key-map): * lisp/progmodes/meta-mode.el (meta-mode-map): * lisp/novice.el (disabled-command-hook): * lisp/loadhist.el (unload-hook-features-list): * lisp/frame.el (blink-cursor): * lisp/files.el (find-file-not-found-hooks, write-file-hooks) (write-contents-hooks): * lisp/emulation/tpu-edt.el (GOLD-map): * lisp/emacs-lock.el (emacs-lock-from-exiting): * lisp/emacs-lisp/generic.el (generic-font-lock-defaults): * lisp/emacs-lisp/chart.el (chart-map): * lisp/dos-fns.el (register-name-alist): * lisp/dired-x.el (dired-omit-files-p): * lisp/desktop.el (desktop-enable): * lisp/cus-edit.el (custom-mode-hook): * lisp/buff-menu.el (buffer-menu-mode-hook): * lisp/bookmark.el (bookmark-read-annotation-text-func) (bookmark-exit-hooks): * lisp/allout.el (allout-mode-deactivate-hook) (allout-exposure-change-hook, allout-structure-added-hook) (allout-structure-deleted-hook, allout-structure-shifted-hook): * lisp/dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle) (dirtrack-debug): Move call to define-obsolete-variable-alias so it comes before the corresponding variable's definition.
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/tpu-edt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/tpu-edt.el b/lisp/emulation/tpu-edt.el
index eaf88ccdf85..b8d07e8b744 100644
--- a/lisp/emulation/tpu-edt.el
+++ b/lisp/emulation/tpu-edt.el
@@ -315,6 +315,7 @@ Otherwise, use `spell-region'."
315;;; Global Keymaps 315;;; Global Keymaps
316;;; 316;;;
317 317
318(define-obsolete-variable-alias 'GOLD-map 'tpu-gold-map "23.1")
318(defvar tpu-gold-map 319(defvar tpu-gold-map
319 (let ((map (make-keymap))) 320 (let ((map (make-keymap)))
320 ;; Previously we used escape sequences here. We now instead presume 321 ;; Previously we used escape sequences here. We now instead presume
@@ -494,7 +495,6 @@ Otherwise, use `spell-region'."
494 map) 495 map)
495 "Maps the function keys on the VT100 keyboard preceded by PF1. 496 "Maps the function keys on the VT100 keyboard preceded by PF1.
496GOLD is the ASCII 7-bit escape sequence <ESC>OP.") 497GOLD is the ASCII 7-bit escape sequence <ESC>OP.")
497(define-obsolete-variable-alias 'GOLD-map 'tpu-gold-map "23.1")
498 498
499(defvar tpu-global-map 499(defvar tpu-global-map
500 (let ((map (make-sparse-keymap))) 500 (let ((map (make-sparse-keymap)))