aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-11-08 08:51:39 +0000
committerGlenn Morris2007-11-08 08:51:39 +0000
commit76a05775d83f87c9ce17a2f16883b04e253c41ea (patch)
tree3db9bd307c350c962a898e66007268a7677252f4
parent566242b78fad53044e4fee8f7271aa9a62a13d98 (diff)
downloademacs-76a05775d83f87c9ce17a2f16883b04e253c41ea.tar.gz
emacs-76a05775d83f87c9ce17a2f16883b04e253c41ea.zip
Explain combine-and-quote-strings, split-string-and-unquote.
Some re-ordering.
-rw-r--r--etc/NEWS29
1 files changed, 18 insertions, 11 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 64ad1929ada..ebc04fb173e 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -42,15 +42,6 @@ below. Emacs tries to warn you about these through `bad-packages-alist'.
42 42
43* Changes in Emacs 22.2 43* Changes in Emacs 22.2
44 44
45** `browse-url-emacs' loads a URL into an Emacs buffer. Handy for *.el URLs.
46
47** `bad-packages-alist' will warn about external packages that are known
48to cause problems in this version of Emacs.
49
50** The values of `dired-recursive-deletes' and `dired-recursive-copies'
51have been changed to `top'. This means that the user is asked once,
52before deleting/copying the indicated directory recursively.
53
54** In Image mode, whenever the displayed image is wider and/or higher 45** In Image mode, whenever the displayed image is wider and/or higher
55than the window, the usual keys for moving the cursor cause the image 46than the window, the usual keys for moving the cursor cause the image
56to be scrolled horizontally or vertically instead. 47to be scrolled horizontally or vertically instead.
@@ -67,6 +58,15 @@ Windows installations. Users of software which modifies the behaviour of
67Windows to cause focus to follow the mouse will now need to explicitly set 58Windows to cause focus to follow the mouse will now need to explicitly set
68this variable. 59this variable.
69 60
61** `bad-packages-alist' will warn about external packages that are known
62to cause problems in this version of Emacs.
63
64** The values of `dired-recursive-deletes' and `dired-recursive-copies'
65have been changed to `top'. This means that the user is asked once,
66before deleting/copying the indicated directory recursively.
67
68** `browse-url-emacs' loads a URL into an Emacs buffer. Handy for *.el URLs.
69
70** The command gdba has been removed as gdb works now for those cases where it 70** The command gdba has been removed as gdb works now for those cases where it
71was needed. In text command mode, if you have problems before execution has 71was needed. In text command mode, if you have problems before execution has
72started, use M-x gud-gdb. 72started, use M-x gud-gdb.
@@ -122,9 +122,16 @@ as its frame.
122** The new function `image-refresh' refreshes all images associated 122** The new function `image-refresh' refreshes all images associated
123with a given image specification. 123with a given image specification.
124 124
125** The new function `split-string-and-unquote' does (what?) 125** The new function `combine-and-quote-strings' concatenates a list of strings
126using a specified separator. If a string contains double quotes, they
127are escaped in the output.
128
129** The new function `split-string-and-unquote' performs the inverse operation to
130`combine-and-quote-strings', i.e. splits a single string into a list
131of strings, undoing any quoting added by `combine-and-quote-strings'.
132(For some separator/string combinations, the original strings cannot
133be recovered.)
126 134
127** The new function `combine-and-quote-strings' does (what?)
128 135
129* Installation Changes in Emacs 22.1 136* Installation Changes in Emacs 22.1
130 137