summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/sort.el2
-rw-r--r--lisp/textmodes/ispell.el2
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 @@
+2014-01-31 Juri Linkov <juri@jurta.org>
+
+ * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
+ from `make-hash-table'.
+
+ * textmodes/ispell.el (ispell-init-process): Change message format
+ to be consistent with other messages.
+
2014-01-31 Glenn Morris <rgm@gnu.org>
* 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."
(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))
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."
(setq ispell-filter nil ispell-filter-continue nil)
;; may need to restart to select new personal dictionary.
(ispell-kill-ispell t)
- (message "Starting new Ispell process [%s::%s] ..."
+ (message "Starting new Ispell process %s with %s dictionary..."
ispell-program-name
(or ispell-local-dictionary ispell-dictionary "default"))
(sit-for 0)