[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r107594: Fix some missing trailing wh
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r107594: Fix some missing trailing whitespace (tiny change) |
Date: |
Mon, 12 Mar 2012 23:54:37 -0700 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 107594
fixes bug(s): http://debbugs.gnu.org/11002
author: Tim Landscheidt <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Mon 2012-03-12 23:54:37 -0700
message:
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.
modified:
lisp/ChangeLog
lisp/calendar/icalendar.el
lisp/emulation/ws-mode.el
lisp/sort.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2012-03-12 20:07:45 +0000
+++ b/lisp/ChangeLog 2012-03-13 06:54:37 +0000
@@ -1,3 +1,10 @@
+2012-03-13 Tim Landscheidt <address@hidden> (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 <address@hidden>
* dabbrev.el: Fix cycle completion order (bug#10963).
=== modified file 'lisp/calendar/icalendar.el'
--- a/lisp/calendar/icalendar.el 2012-01-19 07:21:25 +0000
+++ b/lisp/calendar/icalendar.el 2012-03-13 06:54:37 +0000
@@ -915,7 +915,7 @@
"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 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
=== modified file 'lisp/emulation/ws-mode.el'
--- a/lisp/emulation/ws-mode.el 2012-01-19 07:21:25 +0000
+++ b/lisp/emulation/ws-mode.el 2012-03-13 06:54:37 +0000
@@ -716,7 +716,7 @@
(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)
=== modified file 'lisp/sort.el'
--- a/lisp/sort.el 2012-01-19 07:21:25 +0000
+++ b/lisp/sort.el 2012-03-13 06:54:37 +0000
@@ -423,7 +423,7 @@
;; 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))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r107594: Fix some missing trailing whitespace (tiny change),
Glenn Morris <=