diff options
| author | Juri Linkov | 2014-01-31 11:41:54 +0200 |
|---|---|---|
| committer | Juri Linkov | 2014-01-31 11:41:54 +0200 |
| commit | bd21bf41c00ea85de7bba7440a4ee70fa934cdb9 (patch) | |
| tree | c77ddae81fdeb304fbbf0f3e2eceddcee337bf18 /lisp | |
| parent | 579d49fa6ef7eb66fb6a042251f95d2fa94d2e3b (diff) | |
| download | emacs-bd21bf41c00ea85de7bba7440a4ee70fa934cdb9.tar.gz emacs-bd21bf41c00ea85de7bba7440a4ee70fa934cdb9.zip | |
Misc small fixes.
* doc/lispref/searching.texi (String Search): Incremental word search fixes.
* lisp/sort.el (delete-duplicate-lines): Remove `:weakness 'key'
from `make-hash-table'.
* lisp/textmodes/ispell.el (ispell-init-process): Change message format
to be consistent with other messages.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/sort.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/ispell.el | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f032b06a7f7..0a609682d62 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2014-01-31 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * sort.el (delete-duplicate-lines): Remove `:weakness 'key' | ||
| 4 | from `make-hash-table'. | ||
| 5 | |||
| 6 | * textmodes/ispell.el (ispell-init-process): Change message format | ||
| 7 | to be consistent with other messages. | ||
| 8 | |||
| 1 | 2014-01-31 Glenn Morris <rgm@gnu.org> | 9 | 2014-01-31 Glenn Morris <rgm@gnu.org> |
| 2 | 10 | ||
| 3 | * delsel.el (delete-selection-mode): Doc fix. | 11 | * delsel.el (delete-selection-mode): Doc fix. |
diff --git a/lisp/sort.el b/lisp/sort.el index 152345083fb..dbc641ece2f 100644 --- a/lisp/sort.el +++ b/lisp/sort.el | |||
| @@ -595,7 +595,7 @@ is non-nil, it also prints a message describing the number of deletions." | |||
| 595 | (equal current-prefix-arg '(16)) | 595 | (equal current-prefix-arg '(16)) |
| 596 | (equal current-prefix-arg '(64)) | 596 | (equal current-prefix-arg '(64)) |
| 597 | t))) | 597 | t))) |
| 598 | (let ((lines (unless adjacent (make-hash-table :weakness 'key :test 'equal))) | 598 | (let ((lines (unless adjacent (make-hash-table :test 'equal))) |
| 599 | line prev-line | 599 | line prev-line |
| 600 | (count 0) | 600 | (count 0) |
| 601 | (beg (copy-marker beg)) | 601 | (beg (copy-marker beg)) |
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 050938752ca..5cdae22cc0f 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -3025,7 +3025,7 @@ Keeps argument list for future Ispell invocations for no async support." | |||
| 3025 | (setq ispell-filter nil ispell-filter-continue nil) | 3025 | (setq ispell-filter nil ispell-filter-continue nil) |
| 3026 | ;; may need to restart to select new personal dictionary. | 3026 | ;; may need to restart to select new personal dictionary. |
| 3027 | (ispell-kill-ispell t) | 3027 | (ispell-kill-ispell t) |
| 3028 | (message "Starting new Ispell process [%s::%s] ..." | 3028 | (message "Starting new Ispell process %s with %s dictionary..." |
| 3029 | ispell-program-name | 3029 | ispell-program-name |
| 3030 | (or ispell-local-dictionary ispell-dictionary "default")) | 3030 | (or ispell-local-dictionary ispell-dictionary "default")) |
| 3031 | (sit-for 0) | 3031 | (sit-for 0) |