diff options
| author | Richard M. Stallman | 2007-09-23 15:22:02 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-09-23 15:22:02 +0000 |
| commit | 780d7bb95a64dd735f8b945c97d4d295bd656704 (patch) | |
| tree | b6f47db26fb7e9a0db26feb7f5d99d737b6fe7c1 | |
| parent | 7c4d5b8abb9b44925f547e733458242f37bb386a (diff) | |
| download | emacs-780d7bb95a64dd735f8b945c97d4d295bd656704.tar.gz emacs-780d7bb95a64dd735f8b945c97d4d295bd656704.zip | |
(Backquote): Minor clarification.
| -rw-r--r-- | admin/FOR-RELEASE | 4 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/macros.texi | 2 | ||||
| -rw-r--r-- | etc/NEWS | 10 |
4 files changed, 15 insertions, 5 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 96dd4c39eb4..884fd4995a5 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE | |||
| @@ -60,6 +60,10 @@ http://lists.gnu.org/archive/html/emacs-devel/2007-09/msg00690.html | |||
| 60 | "can't turn off font-lock" | 60 | "can't turn off font-lock" |
| 61 | http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00548.html | 61 | http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00548.html |
| 62 | 62 | ||
| 63 | ** mah@everybody.org, Sep 18: erc causes emacs to hang with multi-tty | ||
| 64 | |||
| 65 | ** jbw@macs.hw.ac.uk, Sep 18: before-string property has no effect if display property is empty | ||
| 66 | |||
| 63 | * DOCUMENTATION | 67 | * DOCUMENTATION |
| 64 | 68 | ||
| 65 | ** Check the Emacs Tutorial. | 69 | ** Check the Emacs Tutorial. |
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 490ef3623a5..9e16ae4500c 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-09-23 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * macros.texi (Backquote): Minor clarification. | ||
| 4 | |||
| 1 | 2007-09-06 Glenn Morris <rgm@gnu.org> | 5 | 2007-09-06 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * Move from lispref/ to doc/lispref/. Change all setfilename | 7 | * Move from lispref/ to doc/lispref/. Change all setfilename |
diff --git a/doc/lispref/macros.texi b/doc/lispref/macros.texi index c8646f77cce..152b7b652b6 100644 --- a/doc/lispref/macros.texi +++ b/doc/lispref/macros.texi | |||
| @@ -365,7 +365,7 @@ whitespace between the @samp{`}, @samp{,} or @samp{,@@} and the | |||
| 365 | following expression. | 365 | following expression. |
| 366 | 366 | ||
| 367 | This syntax is still accepted, for compatibility with old Emacs | 367 | This syntax is still accepted, for compatibility with old Emacs |
| 368 | versions, but support for it will soon disappear. | 368 | versions, but support for it will be removed in the future. |
| 369 | 369 | ||
| 370 | @node Problems with Macros | 370 | @node Problems with Macros |
| 371 | @section Common Problems Using Macros | 371 | @section Common Problems Using Macros |
| @@ -38,6 +38,12 @@ a GIF library. | |||
| 38 | 38 | ||
| 39 | * Changes in Emacs 23.1 | 39 | * Changes in Emacs 23.1 |
| 40 | 40 | ||
| 41 | ** Emacs now supports using both X displays and ttys in one session. | ||
| 42 | You can also use any number of different ttys. | ||
| 43 | |||
| 44 | You can test for the presence of this feature in your Lisp code by | ||
| 45 | testing for the `multi-tty' feature. | ||
| 46 | |||
| 41 | ** Emacs comes with a new set of icons for Mac OS X. | 47 | ** Emacs comes with a new set of icons for Mac OS X. |
| 42 | OS-X-style icons (an application icon and a relevant document icon) | 48 | OS-X-style icons (an application icon and a relevant document icon) |
| 43 | were contributed by Kentaro Ohkouchi. | 49 | were contributed by Kentaro Ohkouchi. |
| @@ -53,10 +59,6 @@ symbolic notation thanks to auxiliary functions. | |||
| 53 | ** split-window-preferred-function specifies whether display-buffer should | 59 | ** split-window-preferred-function specifies whether display-buffer should |
| 54 | split windows vertically or horizontally. | 60 | split windows vertically or horizontally. |
| 55 | 61 | ||
| 56 | ** Support for multiple terminal devices and simultaneous graphical | ||
| 57 | and tty frames has been added. You can test for the presence of this | ||
| 58 | feature in your Lisp code by testing for the `multi-tty' feature. | ||
| 59 | |||
| 60 | ** Emacsclient has been extended to support opening a new terminal | 62 | ** Emacsclient has been extended to support opening a new terminal |
| 61 | frame. Its behavior has been changed to open a new Emacs frame by | 63 | frame. Its behavior has been changed to open a new Emacs frame by |
| 62 | default. Use the -c option to get the old behavior of opening files in | 64 | default. Use the -c option to get the old behavior of opening files in |