aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuri Linkov2014-01-31 11:41:54 +0200
committerJuri Linkov2014-01-31 11:41:54 +0200
commitbd21bf41c00ea85de7bba7440a4ee70fa934cdb9 (patch)
treec77ddae81fdeb304fbbf0f3e2eceddcee337bf18 /src
parent579d49fa6ef7eb66fb6a042251f95d2fa94d2e3b (diff)
downloademacs-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 'src')
-rw-r--r--src/callint.c2
-rw-r--r--src/data.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/callint.c b/src/callint.c
index aedb363980f..35411bf9b5c 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -308,7 +308,7 @@ invoke it. If KEYS is omitted or nil, the return value of
308 308
309 specs = Qnil; 309 specs = Qnil;
310 string = 0; 310 string = 0;
311 /* The idea of FILTER_SPECS is to provide away to 311 /* The idea of FILTER_SPECS is to provide a way to
312 specify how to represent the arguments in command history. 312 specify how to represent the arguments in command history.
313 The feature is not fully implemented. */ 313 The feature is not fully implemented. */
314 filter_specs = Qnil; 314 filter_specs = Qnil;
diff --git a/src/data.c b/src/data.c
index 91a1d8b75fb..a52cee66b57 100644
--- a/src/data.c
+++ b/src/data.c
@@ -2365,7 +2365,7 @@ usage: (<= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2365DEFUN (">=", Fgeq, Sgeq, 1, MANY, 0, 2365DEFUN (">=", Fgeq, Sgeq, 1, MANY, 0,
2366 doc: /* Return t if each arg is greater than or equal to the next arg. 2366 doc: /* Return t if each arg is greater than or equal to the next arg.
2367All must be numbers or markers. 2367All must be numbers or markers.
2368usage: (= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) 2368usage: (>= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2369 (ptrdiff_t nargs, Lisp_Object *args) 2369 (ptrdiff_t nargs, Lisp_Object *args)
2370{ 2370{
2371 return arithcompare_driver (nargs, args, ARITH_GRTR_OR_EQUAL); 2371 return arithcompare_driver (nargs, args, ARITH_GRTR_OR_EQUAL);