aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorJuri Linkov2014-01-31 11:41:54 +0200
committerJuri Linkov2014-01-31 11:41:54 +0200
commitbd21bf41c00ea85de7bba7440a4ee70fa934cdb9 (patch)
treec77ddae81fdeb304fbbf0f3e2eceddcee337bf18 /etc
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 'etc')
-rw-r--r--etc/NEWS10
-rw-r--r--etc/grep.txt11
2 files changed, 13 insertions, 8 deletions
diff --git a/etc/NEWS b/etc/NEWS
index c17eb3ec09a..b9bf67469b7 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -244,11 +244,11 @@ and this variable has been marked obsolete.
244** `emacs-bzr-version' has been renamed to `emacs-repository-version', 244** `emacs-bzr-version' has been renamed to `emacs-repository-version',
245and works for git too, if you fetch the repository notes. 245and works for git too, if you fetch the repository notes.
246 246
247** `read-regexp-defaults-function' defines a function to read regexps, 247** `read-regexp-defaults-function' defines a function to provide default
248used by commands like `rgrep', `lgrep' `occur', `highlight-regexp', etc. 248values for reading regexps by commands like `rgrep', `lgrep' `occur',
249You can customize this to specify a function that provides a default 249`highlight-regexp', etc. You can customize this to specify a function
250value from the regexp last history element, or from the symbol found 250that provides a default value from the regexp last history element,
251at point. 251or from the symbol found at point.
252 252
253+++ 253+++
254** New option `load-prefer-newer' affects how the `load' function chooses 254** New option `load-prefer-newer' affects how the `load' function chooses
diff --git a/etc/grep.txt b/etc/grep.txt
index 564893d5b3e..523b1fa404c 100644
--- a/etc/grep.txt
+++ b/etc/grep.txt
@@ -72,13 +72,18 @@ Grep finished (matches found) at Thu Jul 21 15:02:15
72agrep -n "INFO tree" ../info/* 72agrep -n "INFO tree" ../info/*
73../info/dir: 6: File: dir Node: Top This is the top of the INFO tree 73../info/dir: 6: File: dir Node: Top This is the top of the INFO tree
74 74
75* bzr grep with Bazaar plugin [grep]
76
77bzr grep --color=always -in "org-element-map"
78lisp/org/org.el:21047: (org-element-map
79
75* git-grep 80* git-grep
76 with `[diff "el"] xfuncname = "^(\\(.*)$"' in .gitconfig 81 with `[diff "el"] xfuncname = "^(\\(.*)$"' in .gitconfig
77 and `*.el diff=el' in .gitattributes 82 and `*.el diff=el' in .gitattributes
78 83
79git grep -inH -p -e "org-element-map" 84git --no-pager grep -inH -p -e "org-element-map"
80lisp/org/org.el=20969=(defun org-fill-paragraph (&optional justify) 85lisp/org/org.el=20969=(defun org-fill-paragraph (&optional justify)
81lisp/org/org.el:21047: (org-element-map 86lisp/org/org.el:21047: (org-element-map
82 87
83* unknown greps 88* unknown greps
84 89