aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-08-12 02:58:02 +0000
committerRichard M. Stallman1998-08-12 02:58:02 +0000
commitd6046e457f578c8494afdd0f3a7ab1282927be13 (patch)
tree2df588f499472db057ac9a6681fd95a07e7db020
parentc4c65c33959123460997dd0179c89fd50213e5be (diff)
downloademacs-d6046e457f578c8494afdd0f3a7ab1282927be13.tar.gz
emacs-d6046e457f578c8494afdd0f3a7ab1282927be13.zip
(recover-session): Add leading space on added text lines.
-rw-r--r--lisp/files.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/files.el b/lisp/files.el
index bc2a666b023..d3c8629759d 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -2747,10 +2747,12 @@ Then you'll be asked about a number of files to recover."
2747 (goto-char (point-min)) 2747 (goto-char (point-min))
2748 (or (looking-at "Move to the session you want to recover,") 2748 (or (looking-at "Move to the session you want to recover,")
2749 (let ((inhibit-read-only t)) 2749 (let ((inhibit-read-only t))
2750 (insert "Move to the session you want to recover,\n" 2750 ;; Each line starts with a space
2751 "then type C-c C-c to select it.\n\n" 2751 ;; so that Font Lock mode won't highlight the first character.
2752 "You can also delete some of these files;\n" 2752 (insert " Move to the session you want to recover,\n"
2753 "type d on a line to mark that file for deletion.\n\n"))) 2753 " then type C-c C-c to select it.\n\n"
2754 " You can also delete some of these files;\n"
2755 " type d on a line to mark that file for deletion.\n\n")))
2754 (use-local-map (nconc (make-sparse-keymap) (current-local-map))) 2756 (use-local-map (nconc (make-sparse-keymap) (current-local-map)))
2755 (define-key (current-local-map) "\C-c\C-c" 'recover-session-finish)) 2757 (define-key (current-local-map) "\C-c\C-c" 'recover-session-finish))
2756 2758