aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-12-30 18:02:49 -0800
committerGlenn Morris2013-12-30 18:02:49 -0800
commitb29daf07584497968831af6687bf0fde2d216418 (patch)
tree02bdd2b4cf74c0c92a36849fd6e0a779a6704ac4
parentc8d897786d9dcd9ef92f03a55846537ee08122f5 (diff)
downloademacs-b29daf07584497968831af6687bf0fde2d216418.tar.gz
emacs-b29daf07584497968831af6687bf0fde2d216418.zip
* etc/NEWS: Relocate entries that had strayed to the wrong Emacs version.
-rw-r--r--etc/NEWS51
1 files changed, 27 insertions, 24 deletions
diff --git a/etc/NEWS b/etc/NEWS
index c1e3784d9f6..df50f48188c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -164,6 +164,15 @@ non-nil, they output the same results.
164*** The command `quail-help' is deleted. Use `C-h C-\' 164*** The command `quail-help' is deleted. Use `C-h C-\'
165(`describe-input-method') instead. 165(`describe-input-method') instead.
166 166
167** ImageMagick
168
169*** ImageMagick images now support the :max-width and :max-height
170keywords.
171
172*** Some data types aren't auto-detected by ImageMagick. Adding
173:format to `create-image' may help if the content type is in the
174new variable `image-format-suffixes'.
175
167** Frame and window changes 176** Frame and window changes
168 177
169+++ 178+++
@@ -797,6 +806,9 @@ which support POSIX ACLs.
797*** Handlers for `file-notify-add-watch' and `file-notify-rm-watch' 806*** Handlers for `file-notify-add-watch' and `file-notify-rm-watch'
798for remote machines which support filesystem notifications. 807for remote machines which support filesystem notifications.
799 808
809** New command `url-cookie-list' displays all the current cookies, and
810allows deleting selected cookies.
811
800** VC and related modes 812** VC and related modes
801 813
802+++ 814+++
@@ -1006,6 +1018,10 @@ Either use `completion-all-completions', which returns highlighted
1006strings (including for partial or substring completion), or call 1018strings (including for partial or substring completion), or call
1007`completion-hilit-commonality' to add the highlight. 1019`completion-hilit-commonality' to add the highlight.
1008 1020
1021** New minor modes `prettify-symbols-mode' and `global-prettify-symbols-mode'
1022let you enable symbol prettification (replacing a string like "lambda" with
1023the Greek lambda character).
1024
1009** Terminal changes 1025** Terminal changes
1010 1026
1011+++ 1027+++
@@ -1019,6 +1035,15 @@ frame.
1019 1035
1020*** New hook `tty-setup-hook'. 1036*** New hook `tty-setup-hook'.
1021 1037
1038** Window Handling
1039
1040*** New display action function `display-buffer-no-window' to not
1041display the buffer in a window.
1042
1043*** New display action alist entry `allow-no-window' to indicate the
1044caller of `display-buffer' is ready to handle the case of not
1045displaying the buffer in a window.
1046
1022** New hook `pre-redisplay-function'. 1047** New hook `pre-redisplay-function'.
1023 1048
1024+++ 1049+++
@@ -1390,13 +1415,6 @@ ImageMagick types are treated as images. The function
1390`imagemagick-filter-types' returns the list of types that will be 1415`imagemagick-filter-types' returns the list of types that will be
1391treated as images. 1416treated as images.
1392 1417
1393*** ImageMagick images now support the :max-width and :max-height
1394keywords.
1395
1396*** Some data types aren't auto-detected by ImageMagick. Adding
1397:format to `create-image' may help if the content type is in the
1398new variable `image-format-suffixes'.
1399
1400** Minibuffer 1418** Minibuffer
1401 1419
1402*** In minibuffer filename prompts, `C-M-f' and `C-M-b' now move to the 1420*** In minibuffer filename prompts, `C-M-f' and `C-M-b' now move to the
@@ -1890,9 +1908,6 @@ and the `attributes' slot is always nil.
1890The `url-retrieve' function now uses this to encode its URL argument, 1908The `url-retrieve' function now uses this to encode its URL argument,
1891in case that is not properly encoded. 1909in case that is not properly encoded.
1892 1910
1893*** New command `url-cookie-list' displays all the current cookies, and
1894allows deleting selected cookies.
1895
1896** notifications.el supports now version 1.2 of the Notifications API. 1911** notifications.el supports now version 1.2 of the Notifications API.
1897The function `notifications-get-capabilities' returns the supported 1912The function `notifications-get-capabilities' returns the supported
1898server properties. 1913server properties.
@@ -2142,13 +2157,6 @@ reused.
2142*** New option `switch-to-buffer-preserve-window-point' to restore a 2157*** New option `switch-to-buffer-preserve-window-point' to restore a
2143window's point when switching buffers. 2158window's point when switching buffers.
2144 2159
2145*** New display action function `display-buffer-no-window' to not
2146display the buffer in a window.
2147
2148*** New display action alist entry `allow-no-window' to indicate the
2149caller of `display-buffer' is ready to handle the case of not
2150displaying the buffer in a window.
2151
2152*** New display action alist entries `window-height' and `window-width' 2160*** New display action alist entries `window-height' and `window-width'
2153specify the size of new windows created by `display-buffer'. 2161specify the size of new windows created by `display-buffer'.
2154 2162
@@ -2237,8 +2245,8 @@ log, log10, sqrt, and mod.
2237 2245
2238** Miscellaneous new functions 2246** Miscellaneous new functions
2239 2247
2240*** `set-transient-map' sets up a temporary keymap, active for one key 2248*** `set-temporary-overlay-map' sets up a temporary keymap that
2241(and optionally more). This keymap takes precedence over other maps. 2249takes precedence over most other maps for a short while (normally one key).
2242 2250
2243*** `autoloadp' tests if its argument is an autoloaded object. 2251*** `autoloadp' tests if its argument is an autoloaded object.
2244 2252
@@ -3586,11 +3594,6 @@ should be derived.
3586modes, e.g. (add-hook 'prog-mode-hook 'flyspell-prog-mode) to enable 3594modes, e.g. (add-hook 'prog-mode-hook 'flyspell-prog-mode) to enable
3587on-the-fly spell checking for comments and strings. 3595on-the-fly spell checking for comments and strings.
3588 3596
3589**** New minor modes `prettify-symbols-mode' and
3590`global-prettify-symbols-mode' let the user enable symbol
3591prettification (replacing a string like "lambda" with the Greek lambda
3592character).
3593
3594*** New hook `change-major-mode-after-body-hook', run by 3597*** New hook `change-major-mode-after-body-hook', run by
3595`run-mode-hooks' just before any other mode hooks. 3598`run-mode-hooks' just before any other mode hooks.
3596 3599