diff options
| author | Glenn Morris | 2007-11-08 08:51:39 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-11-08 08:51:39 +0000 |
| commit | 76a05775d83f87c9ce17a2f16883b04e253c41ea (patch) | |
| tree | 3db9bd307c350c962a898e66007268a7677252f4 /etc | |
| parent | 566242b78fad53044e4fee8f7271aa9a62a13d98 (diff) | |
| download | emacs-76a05775d83f87c9ce17a2f16883b04e253c41ea.tar.gz emacs-76a05775d83f87c9ce17a2f16883b04e253c41ea.zip | |
Explain combine-and-quote-strings, split-string-and-unquote.
Some re-ordering.
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/NEWS | 29 |
1 files changed, 18 insertions, 11 deletions
| @@ -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 | ||
| 48 | to cause problems in this version of Emacs. | ||
| 49 | |||
| 50 | ** The values of `dired-recursive-deletes' and `dired-recursive-copies' | ||
| 51 | have been changed to `top'. This means that the user is asked once, | ||
| 52 | before 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 |
| 55 | than the window, the usual keys for moving the cursor cause the image | 46 | than the window, the usual keys for moving the cursor cause the image |
| 56 | to be scrolled horizontally or vertically instead. | 47 | to be scrolled horizontally or vertically instead. |
| @@ -67,6 +58,15 @@ Windows installations. Users of software which modifies the behaviour of | |||
| 67 | Windows to cause focus to follow the mouse will now need to explicitly set | 58 | Windows to cause focus to follow the mouse will now need to explicitly set |
| 68 | this variable. | 59 | this variable. |
| 69 | 60 | ||
| 61 | ** `bad-packages-alist' will warn about external packages that are known | ||
| 62 | to cause problems in this version of Emacs. | ||
| 63 | |||
| 64 | ** The values of `dired-recursive-deletes' and `dired-recursive-copies' | ||
| 65 | have been changed to `top'. This means that the user is asked once, | ||
| 66 | before 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 |
| 71 | was needed. In text command mode, if you have problems before execution has | 71 | was needed. In text command mode, if you have problems before execution has |
| 72 | started, use M-x gud-gdb. | 72 | started, 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 |
| 123 | with a given image specification. | 123 | with 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 |
| 126 | using a specified separator. If a string contains double quotes, they | ||
| 127 | are 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 | ||
| 131 | of strings, undoing any quoting added by `combine-and-quote-strings'. | ||
| 132 | (For some separator/string combinations, the original strings cannot | ||
| 133 | be 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 | ||