1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00

(insert-kbd-macro): Do something reasonable for vectors.

This commit is contained in:
Karl Heuer 1995-03-31 18:52:51 +00:00
parent 5add3885dd
commit 157d78ece6

View File

@ -70,11 +70,11 @@ use this command, and then save the file."
(insert "(fset '"))
(prin1 macroname (current-buffer))
(insert "\n ")
(let ((beg (point)) end)
(prin1 definition (current-buffer))
(setq end (point-marker))
(goto-char beg)
(if (stringp definition)
(if (stringp definition)
(let ((beg (point)) end)
(prin1 definition (current-buffer))
(setq end (point-marker))
(goto-char beg)
(while (< (point) end)
(let ((char (following-char)))
(cond ((= char 0)
@ -114,7 +114,43 @@ use this command, and then save the file."
(insert "\\M-" (- char 128)))
((= char 255)
(delete-region (point) (1+ (point)))
(insert "\\M-\\C-?")))))))
(insert "\\M-\\C-?"))))))
(if (vectorp definition)
(let ((len (length definition)) (i 0) char)
(while (< i len)
(insert (if (zerop i) ?\[ ?\ ))
(setq char (aref definition i)
i (1+ i))
(cond ((not (and (wholenump char) (< char 256)))
(prin1 char (current-buffer)))
((= char 0)
(insert "?\\C-@"))
((< char 27)
(insert "?\\C-" (+ 96 char)))
((= char ?\C-\\)
(insert "?\\C-\\\\"))
((< char 32)
(insert "?\\C-" (+ 64 char)))
((< char 127)
(insert ?? char))
((= char 127)
(insert "?\\C-?"))
((= char 128)
(insert "?\\M-\\C-@"))
((= char (aref "\M-\C-\\" 0))
(insert "?\\M-\\C-\\\\"))
((< char 155)
(insert "?\\M-\\C-" (- char 32)))
((< char 160)
(insert "?\\M-\\C-" (- char 64)))
((= char (aref "\M-\\" 0))
(insert "?\\M-\\\\"))
((< char 255)
(insert "?\\M-" (- char 128)))
((= char 255)
(insert "?\\M-\\C-?"))))
(insert ?\]))
(prin1 definition (current-buffer))))
(insert ")\n")
(if keys
(let ((keys (where-is-internal macroname '(keymap))))