aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorJohn Wiegley2016-02-22 11:33:54 -0800
committerJohn Wiegley2016-02-22 11:33:54 -0800
commit81ef756e6aea369ec78f19b3609f01ceddc5851f (patch)
tree183251df6d3bf87ccc1216cf187e141488dd7c82 /etc
parent23d463d40cca1b68ef4f74a303b748e0649c506c (diff)
parenta9c48d5c9e3cb5952aab1c6e8821677d49068a74 (diff)
downloademacs-81ef756e6aea369ec78f19b3609f01ceddc5851f.tar.gz
emacs-81ef756e6aea369ec78f19b3609f01ceddc5851f.zip
Merge from origin/emacs-25
a9c48d5 Additional fixes for file notification 6bd9d69 Fix documentation of 'global-disable-point-adjustment' 8c22ac9 ; Spelling fix 2975784 Set file modes of pinentry socket for extra safety 2667b3e Clarify GnuPG version compatibility chapter 5e34c36 Revert "Change the default socket location for pinentry" e19c1c3 Kill off xref--display-history 5698947 Keep the xref buffer visible until the user quits it explicitly e34fbde Change the default socket location for pinentry 5f89658 Mention how to enable pinentry feature db51224 Sync with gnulib aa5a794 Remove `semanticdb-save-all-db-idle' from `auto-save-hook' 2d8b2fd Restore point when writing semantic table to disk 27d3430 Mention pinentry.el in epa manual 5baa001 Fix Bug#22736 7261355 Grammar fix in doc string d0f3b18 Naming fix for consistency 74ec92d Prefer customized value for GnuPG executable ea0b604 Fix memory reservation on MS-Windows c5f72aa Update NextStep readme and add wish list. 6de26a7 Report also result in `file-notify--test-event-handler' 5d17ae7 Improve file-notify-test08-watched-file-in-watched-dir 1cb1268 Fix todo-mode item date editing bugs 1e996cf Fix "[:upper:]" for non-ASCII characters 896f993 Allow customising the article mode cursor behavior 24c1c1d Use pop-to-buffer-same-window in woman.el 2a75f64 New filenotify test for bug#22736 c9bccf7 Report critical battery errors d675db9 Make eww message toggling message clearer 5e0bb40 * lisp/calc/calc-units.el (math-standard-units): Update to 2014 CODATA adjustment. fa8fd65 ; Improve character-folding entries in NEWS 3722a69 Fix bugs in window resizing code 289d5c6 Fix decoding DOS EOL in a unibyte buffer 2abcb06 Correct c-parse-state cache manipulation error. 14aec91 Take advantage of new GnuPG version check function e80c2a7 Make GnuPG version check robuster 15a9464 Fix x-load-color-file pointer signedness 132dbf0 * lisp/time-stamp.el (time-stamp-time-zone): Fix doc string punct. 78ab6f1 Follow convention for greek letter constants. 106b5bb Add Stefan-Boltzmann constant to calc units table. b96baa8 * lisp/calc/calc-units.el (math-build-units-table-buffer): Use special-mode. 5f91cf9 Avoid loading cl-lib for term/xterm.elc, eg in -Q -nw. (Bug#22669) 2d40f7d Fix soffice UserInstallation-URL for Windows b1a3ebe Fix display of <pre> elements 57d0e3d ; * lisp/help-fns.el: Remove outdated comment. 7a0628d ; * admin/make-tarball.txt: Mention cleaning.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS20
1 files changed, 15 insertions, 5 deletions
diff --git a/etc/NEWS b/etc/NEWS
index bc3e49097b6..9e000be4a7a 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -710,10 +710,6 @@ item as before.
710** Search and Replace 710** Search and Replace
711 711
712+++ 712+++
713*** New user option `search-default-mode'
714specifies the default mode for I-search.
715
716+++
717*** `isearch' and `query-replace' can now perform character folding in matches. 713*** `isearch' and `query-replace' can now perform character folding in matches.
718Isearch does that by default, while `query-replace' will do that if 714Isearch does that by default, while `query-replace' will do that if
719the new variable `replace-character-fold' is customized to a non-nil 715the new variable `replace-character-fold' is customized to a non-nil
@@ -728,6 +724,18 @@ and ”), and the letter a will match all of its accented cousins, even
728those composed of multiple characters, as well as many other symbols 724those composed of multiple characters, as well as many other symbols
729like ℀, ℁, ⒜, and ⓐ. 725like ℀, ℁, ⒜, and ⓐ.
730 726
727Character folding is enabled by customizing `search-default-mode' to
728the value `character-fold-to-regexp'. If you want to turn character
729folding off, customize the value of `search-default-mode' to the `nil'
730value. You can also toggle character folding in the middle of a
731search by typing `M-s ''.
732
733+++
734*** New user option `search-default-mode'.
735This option specifies the default mode for Isearch. The default
736value, `character-fold-to-regexp' specifies that Isearch should fold
737characters when searching.
738
731+++ 739+++
732*** New function `character-fold-to-regexp' can be used 740*** New function `character-fold-to-regexp' can be used
733by searching commands to produce a regexp matching anything that 741by searching commands to produce a regexp matching anything that
@@ -1423,7 +1431,9 @@ few or no entries have changed.
1423minibuffer instead of a graphical dialog, depending on whether the gpg 1431minibuffer instead of a graphical dialog, depending on whether the gpg
1424command is called from Emacs (i.e., INSIDE_EMACS environment variable 1432command is called from Emacs (i.e., INSIDE_EMACS environment variable
1425is set). This feature requires newer versions of GnuPG (2.1.5 or 1433is set). This feature requires newer versions of GnuPG (2.1.5 or
1426later) and Pinentry (0.9.5 or later). 1434later) and Pinentry (0.9.5 or later). To use this feature, add
1435"allow-emacs-pinentry" to "~/.gnupg/gpg-agent.conf" and reload the
1436configuration with "gpgconf --reload gpg-agent".
1427 1437
1428+++ 1438+++
1429** cl-generic.el provides CLOS-style multiple-dispatch generic functions. 1439** cl-generic.el provides CLOS-style multiple-dispatch generic functions.