aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichaël Cadilhac2007-09-10 09:56:11 +0000
committerMichaël Cadilhac2007-09-10 09:56:11 +0000
commitf664fee97dddd371f2e541ac21491ce77a28219b (patch)
tree598afb1fbe04503575f320e61b19539d51d36a42
parent09fbdf6ccc2ee2f4f2e1f02a5f11d264ead7a224 (diff)
downloademacs-f664fee97dddd371f2e541ac21491ce77a28219b.tar.gz
emacs-f664fee97dddd371f2e541ac21491ce77a28219b.zip
Document the interactive specification for C functions.
Say that `set-file-modes' is now interactive.
-rw-r--r--etc/ChangeLog5
-rw-r--r--etc/NEWS17
2 files changed, 14 insertions, 8 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 9009874b8e7..8c088e2813d 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,8 @@
12007-09-10 Micha,Ak(Bl Cadilhac <michael@cadilhac.name>
2
3 * NEWS: Document the interactive specification for C functions.
4 Say that `set-file-modes' is now interactive.
5
12007-09-10 Michael Olson <mwolson@gnu.org> 62007-09-10 Michael Olson <mwolson@gnu.org>
2 7
3 * ERC-NEWS: Improve description of erc-tls and erc-ssl change. 8 * ERC-NEWS: Improve description of erc-tls and erc-ssl change.
diff --git a/etc/NEWS b/etc/NEWS
index b7ca1d167de..312a739f4b4 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -34,6 +34,13 @@ a GIF library.
34 34
35* Changes in Emacs 23.1 35* Changes in Emacs 23.1
36 36
37** Built-in functions (subr) can now have an interactive specification
38that is not a prompt string. If the `intspec' parameter of a `DEFUN'
39starts with a `(', the string is evaluated as a Lisp form.
40
41** set-file-modes is now interactive and can take the mode value in
42symbolic notation thanks to auxiliary functions.
43
37** split-window-preferred-function specifies whether display-buffer should 44** split-window-preferred-function specifies whether display-buffer should
38split windows vertically or horizontally. 45split windows vertically or horizontally.
39 46
@@ -119,13 +126,7 @@ history element containing the search string becomes the current.
119 126
120* New Modes and Packages in Emacs 23.1 127* New Modes and Packages in Emacs 23.1
121 128
122** The package doc-view.el has been added. It supports viewing of PDF, 129** A new game called `bubble' has been added
123PostScript and DVI documents inside an Emacs buffer by converting the
124document to a set of PNG images first. One can also search for a
125regular expression in the document. The commentary of the file explains
126its usage.
127
128** A new game called `bubble' has been added.
129 130
130** minibuffer-indicate-depth-mode shows the minibuffer depth in the prompt. 131** minibuffer-indicate-depth-mode shows the minibuffer depth in the prompt.
131 132
@@ -254,7 +255,7 @@ session, and `make-frame-on-tty' works during a graphical session.
254`terminal-parameter', `set-terminal-parameter', 255`terminal-parameter', `set-terminal-parameter',
255`modify-terminal-parameters'. 256`modify-terminal-parameters'.
256 257
257*** New hooks: `suspend-tty-functions' and `resume-tty-functions' 258*** New hooks: `suspend-tty-functions' and `resume-tty-functions'
258are called after a tty frame has been suspended or resumed, 259are called after a tty frame has been suspended or resumed,
259respectively. The functions are called with the terminal id of the frame 260respectively. The functions are called with the terminal id of the frame
260being suspended/resumed as a parameter. 261being suspended/resumed as a parameter.