diff options
| author | Richard M. Stallman | 1998-08-12 02:58:02 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-08-12 02:58:02 +0000 |
| commit | d6046e457f578c8494afdd0f3a7ab1282927be13 (patch) | |
| tree | 2df588f499472db057ac9a6681fd95a07e7db020 | |
| parent | c4c65c33959123460997dd0179c89fd50213e5be (diff) | |
| download | emacs-d6046e457f578c8494afdd0f3a7ab1282927be13.tar.gz emacs-d6046e457f578c8494afdd0f3a7ab1282927be13.zip | |
(recover-session): Add leading space on added text lines.
| -rw-r--r-- | lisp/files.el | 10 |
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 | ||