diff options
| author | Paul Eggert | 2016-08-13 23:30:55 -0500 |
|---|---|---|
| committer | Paul Eggert | 2016-08-13 23:32:36 -0500 |
| commit | 66ae4cada5bb22737e63e59fdaf0983b12dc29bc (patch) | |
| tree | 6712348da0af6196a8d0aa9a95c80eaa04662c60 /lisp/recentf.el | |
| parent | 2791580f5eaa65948a13ea4ea4952d03b4da795b (diff) | |
| download | emacs-66ae4cada5bb22737e63e59fdaf0983b12dc29bc.tar.gz emacs-66ae4cada5bb22737e63e59fdaf0983b12dc29bc.zip | |
Minor text-quoting-style fixes
* lisp/cus-edit.el (custom-buffer-create-internal):
* lisp/recentf.el (recentf-edit-list):
Follow text-quoting-style preference when quoting in UI strings.
* src/doc.c (Fsubstitute_command_keys): Don’t say that curved
quotes are substituted for, as this is no longer true.
Diffstat (limited to 'lisp/recentf.el')
| -rw-r--r-- | lisp/recentf.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/recentf.el b/lisp/recentf.el index dc9489752fb..e30e6468ebb 100644 --- a/lisp/recentf.el +++ b/lisp/recentf.el | |||
| @@ -1124,8 +1124,9 @@ IGNORE arguments." | |||
| 1124 | (recentf-dialog (format "*%s - Edit list*" recentf-menu-title) | 1124 | (recentf-dialog (format "*%s - Edit list*" recentf-menu-title) |
| 1125 | (set (make-local-variable 'recentf-edit-list) nil) | 1125 | (set (make-local-variable 'recentf-edit-list) nil) |
| 1126 | (widget-insert | 1126 | (widget-insert |
| 1127 | "Click on OK to delete selected files from the recent list. | 1127 | (format-message |
| 1128 | Click on Cancel or type `q' to cancel.\n") | 1128 | "Click on OK to delete selected files from the recent list. |
| 1129 | Click on Cancel or type `q' to cancel.\n")) | ||
| 1129 | ;; Insert the list of files as checkboxes | 1130 | ;; Insert the list of files as checkboxes |
| 1130 | (dolist (item recentf-list) | 1131 | (dolist (item recentf-list) |
| 1131 | (widget-create 'checkbox | 1132 | (widget-create 'checkbox |