mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-22 07:09:54 +00:00
Fix some missing trailing whitespace (tiny change)
* lisp/calendar/icalendar.el (icalendar-export-file, icalendar-import-file): * lisp/emulation/ws-mode.el (ws-query-replace): * lisp/sort.el (sort-regexp-fields): Fix missing trailing whitespace in interactive prompts. Fixes: debbugs:11002
This commit is contained in:
parent
f003f29445
commit
4aaa93566b
@ -1,3 +1,10 @@
|
||||
2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
|
||||
|
||||
* calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
|
||||
* emulation/ws-mode.el (ws-query-replace):
|
||||
* sort.el (sort-regexp-fields):
|
||||
Fix missing trailing whitespace in interactive prompts. (Bug#11002)
|
||||
|
||||
2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* dabbrev.el: Fix cycle completion order (bug#10963).
|
||||
|
@ -915,7 +915,7 @@ would be \"pm\"."
|
||||
"Export diary file to iCalendar format.
|
||||
All diary entries in the file DIARY-FILENAME are converted to iCalendar
|
||||
format. The result is appended to the file ICAL-FILENAME."
|
||||
(interactive "FExport diary data from file:
|
||||
(interactive "FExport diary data from file: \n\
|
||||
Finto iCalendar file: ")
|
||||
(save-current-buffer
|
||||
(set-buffer (find-file diary-filename))
|
||||
@ -1794,7 +1794,7 @@ Argument ICAL-FILENAME output iCalendar file.
|
||||
Argument DIARY-FILENAME input `diary-file'.
|
||||
Optional argument NON-MARKING determines whether events are created as
|
||||
non-marking or not."
|
||||
(interactive "fImport iCalendar data from file:
|
||||
(interactive "fImport iCalendar data from file: \n\
|
||||
Finto diary file:
|
||||
p")
|
||||
;; clean up the diary file
|
||||
|
@ -716,7 +716,7 @@ This will only work for errors raised by WordStar mode functions."
|
||||
|
||||
(defun ws-query-replace (from to)
|
||||
"In WordStar mode: Search string, remember string for repetition."
|
||||
(interactive "sReplace:
|
||||
(interactive "sReplace: \n\
|
||||
sWith: " )
|
||||
(setq ws-search-string from)
|
||||
(setq ws-search-direction t)
|
||||
|
@ -423,7 +423,7 @@ For example: to sort lines in the region by the first word on each line
|
||||
;; using negative prefix arg to mean "reverse" is now inconsistent with
|
||||
;; other sort-.*fields functions but then again this was before, since it
|
||||
;; didn't use the magnitude of the arg to specify anything.
|
||||
(interactive "P\nsRegexp specifying records to sort:
|
||||
(interactive "P\nsRegexp specifying records to sort: \n\
|
||||
sRegexp specifying key within record: \nr")
|
||||
(cond ((or (equal key-regexp "") (equal key-regexp "\\&"))
|
||||
(setq key-regexp 0))
|
||||
|
Loading…
Reference in New Issue
Block a user