summaryrefslogtreecommitdiff
path: root/lisp/sort.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@jurta.org>2014-01-31 11:41:54 +0200
committerJuri Linkov <juri@jurta.org>2014-01-31 11:41:54 +0200
commitbd21bf41c00ea85de7bba7440a4ee70fa934cdb9 (patch)
treec77ddae81fdeb304fbbf0f3e2eceddcee337bf18 /lisp/sort.el
parent579d49fa6ef7eb66fb6a042251f95d2fa94d2e3b (diff)
downloademacs-bd21bf41c00ea85de7bba7440a4ee70fa934cdb9.tar.gz
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/sort.el')
-rw-r--r--lisp/sort.el2
1 files changed, 1 insertions, 1 deletions
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."
(equal current-prefix-arg '(16))
(equal current-prefix-arg '(64))
t)))
- (let ((lines (unless adjacent (make-hash-table :weakness 'key :test 'equal)))
+ (let ((lines (unless adjacent (make-hash-table :test 'equal)))
line prev-line
(count 0)
(beg (copy-marker beg))