mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Fix XEmacs-specific clause in definition of pascal-outline-map.
* lisp/progmodes/pascal.el (pascal-outline-map): Call set-keymap-name on map, not pascal-outline-map, as the latter is not yet defined.
This commit is contained in:
parent
3d2c82ac96
commit
79fe320566
1 changed files with 1 additions and 1 deletions
|
|
@ -1392,7 +1392,7 @@ The default is a name found in the buffer around point."
|
|||
(defvar pascal-outline-map
|
||||
(let ((map (make-sparse-keymap)))
|
||||
(if (fboundp 'set-keymap-name)
|
||||
(set-keymap-name pascal-outline-map 'pascal-outline-map))
|
||||
(set-keymap-name map 'pascal-outline-map))
|
||||
(define-key map "\M-\C-a" 'pascal-outline-prev-defun)
|
||||
(define-key map "\M-\C-e" 'pascal-outline-next-defun)
|
||||
(define-key map "\C-c\C-d" 'pascal-outline-goto-defun)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue