emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r116221: Misc small fixes.


From: Juri Linkov
Subject: [Emacs-diffs] trunk r116221: Misc small fixes.
Date: Fri, 31 Jan 2014 09:42:00 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116221
revision-id: address@hidden
parent: address@hidden
committer: Juri Linkov <address@hidden>
branch nick: trunk
timestamp: Fri 2014-01-31 11:41:54 +0200
message:
  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.
modified:
  doc/emacs/basic.texi           basic.texi-20091113204419-o5vbwnq5f7feedwu-6233
  doc/lispref/ChangeLog          changelog-20091113204419-o5vbwnq5f7feedwu-6155
  doc/lispref/searching.texi     
searching.texi-20091113204419-o5vbwnq5f7feedwu-6208
  etc/NEWS                       news-20100311060928-aoit31wvzf25yr1z-1
  etc/grep.txt                   grep.txt-20091113204419-o5vbwnq5f7feedwu-3827
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/sort.el                   sort.el-20091113204419-o5vbwnq5f7feedwu-125
  lisp/textmodes/ispell.el       ispell.el-20091113204419-o5vbwnq5f7feedwu-694
  src/callint.c                  callint.c-20091113204419-o5vbwnq5f7feedwu-279
  src/data.c                     data.c-20091113204419-o5vbwnq5f7feedwu-251
=== modified file 'doc/emacs/basic.texi'
--- a/doc/emacs/basic.texi      2014-01-01 07:43:34 +0000
+++ b/doc/emacs/basic.texi      2014-01-31 09:41:54 +0000
@@ -235,7 +235,7 @@
 @kindex C-LEFT
 @kindex M-LEFT
 @findex left-word
-This command (@code{left-word}) behaves like @kbd{M-f}, except it
+This command (@code{left-word}) behaves like @kbd{M-b}, except it
 moves @emph{forward} by one word if the current paragraph is
 right-to-left.  @xref{Bidirectional Editing}.
 

=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2014-01-28 01:49:02 +0000
+++ b/doc/lispref/ChangeLog     2014-01-31 09:41:54 +0000
@@ -1,3 +1,7 @@
+2014-01-31  Juri Linkov  <address@hidden>
+
+       * searching.texi (String Search): Incremental word search fixes.
+
 2014-01-28  Glenn Morris  <address@hidden>
 
        * text.texi (Indent Tabs): Update related to tab-stops.

=== modified file 'doc/lispref/searching.texi'
--- a/doc/lispref/searching.texi        2014-01-01 07:43:34 +0000
+++ b/doc/lispref/searching.texi        2014-01-31 09:41:54 +0000
@@ -137,7 +137,7 @@
 
 @group
 (word-search-forward "Please find the ball, boy.")
-     @result{} 36
+     @result{} 39
 
 ---------- Buffer: foo ----------
 He said "Please!  Find
@@ -160,16 +160,17 @@
 times.  Point is positioned at the end of the last match.
 
 @findex word-search-regexp
-Internal, @code{word-search-forward} and related functions use the
+Internally, @code{word-search-forward} and related functions use the
 function @code{word-search-regexp} to convert @var{string} to a
 regular expression that ignores punctuation.
 @end deffn
 
 @deffn Command word-search-forward-lax string &optional limit noerror repeat
 This command is identical to @code{word-search-forward}, except that
-the end of @var{string} need not match a word boundary, unless @var{string} 
ends
-in whitespace.  For instance, searching for @samp{ball boy} matches
address@hidden boyee}, but does not match @samp{aball boy}.
+the beginning or the end of @var{string} need not match a word
+boundary, unless @var{string} begins or ends in whitespace.
+For instance, searching for @samp{ball boy} matches @samp{ball boyee},
+but does not match @samp{balls boy}.
 @end deffn
 
 @deffn Command word-search-backward string &optional limit noerror repeat
@@ -181,8 +182,8 @@
 
 @deffn Command word-search-backward-lax string &optional limit noerror repeat
 This command is identical to @code{word-search-backward}, except that
-the end of @var{string} need not match a word boundary, unless @var{string} 
ends
-in whitespace.
+the beginning or the end of @var{string} need not match a word
+boundary, unless @var{string} begins or ends in whitespace.
 @end deffn
 
 @node Searching and Case

=== modified file 'etc/NEWS'
--- a/etc/NEWS  2014-01-31 07:28:17 +0000
+++ b/etc/NEWS  2014-01-31 09:41:54 +0000
@@ -244,11 +244,11 @@
 ** `emacs-bzr-version' has been renamed to `emacs-repository-version',
 and works for git too, if you fetch the repository notes.
 
-** `read-regexp-defaults-function' defines a function to read regexps,
-used by commands like `rgrep', `lgrep' `occur', `highlight-regexp', etc.
-You can customize this to specify a function that provides a default
-value from the regexp last history element, or from the symbol found
-at point.
+** `read-regexp-defaults-function' defines a function to provide default
+values for reading regexps by commands like `rgrep', `lgrep' `occur',
+`highlight-regexp', etc.  You can customize this to specify a function
+that provides a default value from the regexp last history element,
+or from the symbol found at point.
 
 +++
 ** New option `load-prefer-newer' affects how the `load' function chooses

=== modified file 'etc/grep.txt'
--- a/etc/grep.txt      2014-01-01 07:43:34 +0000
+++ b/etc/grep.txt      2014-01-31 09:41:54 +0000
@@ -72,13 +72,18 @@
 agrep -n "INFO tree" ../info/*
 ../info/dir: 6: File: dir      Node: Top       This is the top of the INFO tree
 
+* bzr grep with Bazaar plugin [grep]
+
+bzr grep --color=always -in "org-element-map"
+lisp/org/org.el:21047:                    
(org-element-map
+
 * git-grep
   with `[diff "el"] xfuncname = "^(\\(.*)$"' in .gitconfig
   and `*.el diff=el' in .gitattributes
 
-git grep -inH -p -e "org-element-map"
-lisp/org/org.el=20969=(defun org-fill-paragraph (&optional justify)
-lisp/org/org.el:21047:               (org-element-map
+git --no-pager grep -inH -p -e "org-element-map"
+lisp/org/org.el=20969=(defun org-fill-paragraph (&optional 
justify)
+lisp/org/org.el:21047:               (org-element-map
 
 * unknown greps
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-01-31 07:28:17 +0000
+++ b/lisp/ChangeLog    2014-01-31 09:41:54 +0000
@@ -1,3 +1,11 @@
+2014-01-31  Juri Linkov  <address@hidden>
+
+       * 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  <address@hidden>
 
        * delsel.el (delete-selection-mode): Doc fix.

=== modified file 'lisp/sort.el'
--- a/lisp/sort.el      2014-01-26 01:10:18 +0000
+++ b/lisp/sort.el      2014-01-31 09:41:54 +0000
@@ -595,7 +595,7 @@
           (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))

=== modified file 'lisp/textmodes/ispell.el'
--- a/lisp/textmodes/ispell.el  2014-01-14 10:50:28 +0000
+++ b/lisp/textmodes/ispell.el  2014-01-31 09:41:54 +0000
@@ -3025,7 +3025,7 @@
        (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)

=== modified file 'src/callint.c'
--- a/src/callint.c     2014-01-01 07:43:34 +0000
+++ b/src/callint.c     2014-01-31 09:41:54 +0000
@@ -308,7 +308,7 @@
 
   specs = Qnil;
   string = 0;
-  /* The idea of FILTER_SPECS is to provide away to
+  /* The idea of FILTER_SPECS is to provide a way to
      specify how to represent the arguments in command history.
      The feature is not fully implemented.  */
   filter_specs = Qnil;

=== modified file 'src/data.c'
--- a/src/data.c        2014-01-26 19:44:23 +0000
+++ b/src/data.c        2014-01-31 09:41:54 +0000
@@ -2365,7 +2365,7 @@
 DEFUN (">=", Fgeq, Sgeq, 1, MANY, 0,
        doc: /* Return t if each arg is greater than or equal to the next arg.
 All must be numbers or markers.
-usage: (= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS)  */)
+usage: (>= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS)  */)
   (ptrdiff_t nargs, Lisp_Object *args)
 {
   return arithcompare_driver (nargs, args, ARITH_GRTR_OR_EQUAL);


reply via email to

[Prev in Thread] Current Thread [Next in Thread]