changeset 1469:af4fe5e670f2

(insert-kbd-macro): Replace nonprinting chars with escapes.
author Richard M. Stallman <rms@gnu.org>
date Fri, 23 Oct 1992 09:31:22 +0000
parents 01e760e7de34
children eb4043bd65ef
files lisp/macros.el
diffstat 1 files changed, 25 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/macros.el	Fri Oct 23 09:20:44 1992 +0000
+++ b/lisp/macros.el	Fri Oct 23 09:31:22 1992 +0000
@@ -41,7 +41,7 @@
 (defun insert-kbd-macro (macroname &optional keys)
   "Insert in buffer the definition of kbd macro NAME, as Lisp code.
 Optional second arg KEYS means also record the keys it is on
-(this is the prefix argument, when calling interactively).
+\(this is the prefix argument, when calling interactively).
 
 This Lisp code will, when executed, define the kbd macro with the same
 definition it has now.  If you say to record the keys, the Lisp code
@@ -49,13 +49,35 @@
 are recorded since executing this Lisp code always makes global
 bindings.
 
-To save a kbd macro, visit a file of Lisp code such as your ~/.emacs,
+To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
 use this command, and then save the file."
   (interactive "CInsert kbd macro (name): \nP")
   (insert "(fset '")
   (prin1 macroname (current-buffer))
   (insert "\n   ")
-  (prin1 (symbol-function macroname) (current-buffer))
+  (let ((beg (point)) end)
+    (prin1 (symbol-function macroname) (current-buffer))
+    (setq end (point-marker))
+    (goto-char beg)
+    (while (< (point) end)
+      (let ((char (following-char)))
+	(cond ((< char 32)
+	       (delete-region (point) (1+ (point)))
+	       (insert "\\C-" (+ 96 char)))
+	      ((< char 127)
+	       (forward-char 1))
+	      ((= char 127)
+	       (delete-region (point) (1+ (point)))
+	       (insert "\\C-?"))
+	      ((< char 160)
+	       (delete-region (point) (1+ (point)))
+	       (insert "\\M-C-" (- char 32)))
+	      ((< char 255)
+	       (delete-region (point) (1+ (point)))
+	       (insert "\\M-" (- char 128)))
+	      ((= char 255)
+	       (delete-region (point) (1+ (point)))
+	       (insert "\\M-C-?"))))))
   (insert ")\n")
   (if keys
       (let ((keys (where-is-internal macroname nil)))