aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorChong Yidong2010-04-25 17:21:51 -0400
committerChong Yidong2010-04-25 17:21:51 -0400
commiteb5ed549f4aa1fba7869ebb2d62cc974a4a1263a (patch)
tree97cc3332d3eca4d86c83373da68b0afdc1f516dd /etc
parent3b0788f68ec9a0938dffcd9dd19894e3df84a376 (diff)
downloademacs-eb5ed549f4aa1fba7869ebb2d62cc974a4a1263a.tar.gz
emacs-eb5ed549f4aa1fba7869ebb2d62cc974a4a1263a.zip
Document Emacs 23.2 changes.
* functions.texi (Obsolete Functions): Document set-advertised-calling-convention. * minibuf.texi (Basic Completion): Document completion-in-region. (Programmed Completion): Document completion-annotate-function. * commands.texi (Reading One Event): Document read-key. (Distinguish Interactive): Document KIND arg to called-interactively-p. Delete obsolete interactive-p. * elisp.texi (Top): Update node description. * misc.texi (Printing): Document htmlfontify-buffer.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS10
1 files changed, 7 insertions, 3 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 232b0af1d6f..192971a7746 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -437,6 +437,7 @@ System (CLOS). It is used by the other CEDET packages.
437--- 437---
438** mpc.el is a front end for the Music Player Daemon. Run it with M-x mpc. 438** mpc.el is a front end for the Music Player Daemon. Run it with M-x mpc.
439 439
440+++
440** htmlfontify.el turns a fontified Emacs buffer into an HTML page. 441** htmlfontify.el turns a fontified Emacs buffer into an HTML page.
441 442
442+++ 443+++
@@ -488,6 +489,7 @@ key binding to toggle image display.
488** All the default-FOO variables that hold the default value of the FOO 489** All the default-FOO variables that hold the default value of the FOO
489variable, are now declared obsolete. 490variable, are now declared obsolete.
490 491
492+++
491** read-key is a function halfway between read-event and read-key-sequence. 493** read-key is a function halfway between read-event and read-key-sequence.
492It reads a single key, but obeys input and escape sequence decoding. 494It reads a single key, but obeys input and escape sequence decoding.
493 495
@@ -500,18 +502,18 @@ This maximizes the frame.
500virtual desktops. 502virtual desktops.
501 503
502** Completion changes 504** Completion changes
503 505---
504*** completion-base-size is obsoleted by completion-base-position. 506*** completion-base-size is obsoleted by completion-base-position.
505This change causes a few backward incompatibilities, mostly with 507This change causes a few backward incompatibilities, mostly with
506choose-completion-string-functions where the `mini-p' argument has 508choose-completion-string-functions where the `mini-p' argument has
507been replaced by a `base-position' argument, and where the `base-size' 509been replaced by a `base-position' argument, and where the `base-size'
508argument is now always nil. 510argument is now always nil.
509 511+++
510*** New function `completion-in-region' to use the standard completion 512*** New function `completion-in-region' to use the standard completion
511facilities on a particular region of text. 513facilities on a particular region of text.
512+++ 514+++
513*** The 4th arg to all-completions (aka hide-spaces) is declared obsolete. 515*** The 4th arg to all-completions (aka hide-spaces) is declared obsolete.
514 516+++
515*** completion-annotate-function specifies how to compute annotations 517*** completion-annotate-function specifies how to compute annotations
516for completions displayed in *Completions*. 518for completions displayed in *Completions*.
517 519
@@ -528,9 +530,11 @@ any more.
528+++ 530+++
529*** New function `copy-directory', which copies a directory recursively. 531*** New function `copy-directory', which copies a directory recursively.
530 532
533+++
531** called-interactively-p now takes one argument and replaces interactive-p 534** called-interactively-p now takes one argument and replaces interactive-p
532which is now marked obsolete. 535which is now marked obsolete.
533 536
537+++
534** New function set-advertised-calling-convention makes it possible 538** New function set-advertised-calling-convention makes it possible
535to obsolete arguments as well as make some arguments mandatory. 539to obsolete arguments as well as make some arguments mandatory.
536 540