diff options
| author | Richard M. Stallman | 2004-11-01 07:48:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-11-01 07:48:44 +0000 |
| commit | 2d1ef312c83d551dab1416d532652492bf7aead0 (patch) | |
| tree | 287b92b7ecd1048617571598aae7d0e38d0e2ffb | |
| parent | e2c76fd857e1174126d92b134fd76def53c65b40 (diff) | |
| download | emacs-2d1ef312c83d551dab1416d532652492bf7aead0.tar.gz emacs-2d1ef312c83d551dab1416d532652492bf7aead0.zip | |
*** empty log message ***
| -rw-r--r-- | admin/FOR-RELEASE | 6 | ||||
| -rw-r--r-- | etc/NEWS | 7 | ||||
| -rw-r--r-- | etc/TODO | 2 | ||||
| -rw-r--r-- | lisp/ChangeLog | 36 | ||||
| -rw-r--r-- | lispref/ChangeLog | 4 |
5 files changed, 55 insertions, 0 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 1898cf4dea4..864f0285ab2 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE | |||
| @@ -18,11 +18,17 @@ redisplay uses an invalidated face_id with FACE_FROM_ID | |||
| 18 | which then returns a NULL pointer. Said to happen with | 18 | which then returns a NULL pointer. Said to happen with |
| 19 | isearch faces. | 19 | isearch faces. |
| 20 | 20 | ||
| 21 | * LOSSAGE | ||
| 22 | |||
| 23 | ** Clean up flymake.el to follow Emacs Lisp conventions. | ||
| 21 | 24 | ||
| 22 | * GTK RELATED BUGS | 25 | * GTK RELATED BUGS |
| 23 | 26 | ||
| 24 | ** Make GTK scrollbars behave like others w.r.t. overscrolling. | 27 | ** Make GTK scrollbars behave like others w.r.t. overscrolling. |
| 25 | 28 | ||
| 29 | ** Make GTK update the menu bar in two stages, as with Xt, | ||
| 30 | so that the first can run Lisp code, while only the second | ||
| 31 | needs BLOCK_INPUT. | ||
| 26 | 32 | ||
| 27 | * DOCUMENTATION | 33 | * DOCUMENTATION |
| 28 | 34 | ||
| @@ -2313,6 +2313,13 @@ configuration files. | |||
| 2313 | * Lisp Changes in Emacs 21.4 | 2313 | * Lisp Changes in Emacs 21.4 |
| 2314 | 2314 | ||
| 2315 | +++ | 2315 | +++ |
| 2316 | ** The new function `called-interactively-p' does what many people | ||
| 2317 | have mistakenly believed `interactively-p' did: it returns t if the | ||
| 2318 | calling function was called through `call-interactively'. | ||
| 2319 | This should only be used when you cannot add a new "interactively" | ||
| 2320 | argument to the command. | ||
| 2321 | |||
| 2322 | +++ | ||
| 2316 | ** An interactive specification may now use the code letter 'U' to get | 2323 | ** An interactive specification may now use the code letter 'U' to get |
| 2317 | the up-event that was discarded in case the last key sequence read for a | 2324 | the up-event that was discarded in case the last key sequence read for a |
| 2318 | previous 'k' or 'K' argument was a down-event; otherwise nil is used. | 2325 | previous 'k' or 'K' argument was a down-event; otherwise nil is used. |
| @@ -85,6 +85,8 @@ to the FSF. | |||
| 85 | at the same time and do it in a context-sensitive way. | 85 | at the same time and do it in a context-sensitive way. |
| 86 | *** ability to add mode-specific data to the partial-parse-state. | 86 | *** ability to add mode-specific data to the partial-parse-state. |
| 87 | 87 | ||
| 88 | ** Add a way to convert a keyboard macro to equivalent Lisp code. | ||
| 89 | |||
| 88 | ** Have a command suggestion help system that recognizes patterns | 90 | ** Have a command suggestion help system that recognizes patterns |
| 89 | of commands which could be replaced with a simpler common command. | 91 | of commands which could be replaced with a simpler common command. |
| 90 | It should not make more than one suggestion per 10 minutes. | 92 | It should not make more than one suggestion per 10 minutes. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ae115a20c12..e5dd9b7f3fa 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,39 @@ | |||
| 1 | 2004-11-01 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * allout.el (allout group): Add :version. | ||
| 4 | (allout-init): Don't use interactive-p. | ||
| 5 | (allout-ascend-to-depth, allout-ascend, allout-end-of-level) | ||
| 6 | (allout-forward-current-level, allout-backward-current-level): | ||
| 7 | Don't use interactive-p. | ||
| 8 | |||
| 9 | * textmodes/bibtex.el (bibtex-make-field): Don't use interactive-p. | ||
| 10 | (bibtex-find-text): Likewise. | ||
| 11 | |||
| 12 | * progmodes/vhdl-mode.el (vhdl-fill-region) | ||
| 13 | (vhdl-beginning-of-statement): Don't use interactive-p. | ||
| 14 | |||
| 15 | * progmodes/idlwave.el (idlwave-update-routine-info): | ||
| 16 | Don't use interactive-p. | ||
| 17 | |||
| 18 | * progmodes/idlw-shell.el (idlwave-shell-send-char): | ||
| 19 | Don't use interactive-p. | ||
| 20 | |||
| 21 | * progmodes/cperl-mode.el (cperl-switch-to-doc-buffer): | ||
| 22 | Don't use interactive-p. | ||
| 23 | |||
| 24 | * progmodes/ada-xref.el (ada-make-body-gnatstub): | ||
| 25 | Don't use interactive-p. | ||
| 26 | |||
| 27 | * play/fortune.el (fortune-to-signature): Don't use interactive-p. | ||
| 28 | (fortune-in-buffer): Doc fix. | ||
| 29 | |||
| 30 | * play/5x5.el (5x5-new-game): Set up the buffer even if not interactive. | ||
| 31 | |||
| 32 | * net/eudc.el (eudc-display-records): Use with-output-to-temp-buffer; | ||
| 33 | don't select the temporary buffer. | ||
| 34 | (eudc-get-email): New optional arg ERROR; don't use interactive-p. | ||
| 35 | (eudc-get-phone): Likewise. | ||
| 36 | |||
| 1 | 2004-11-01 Kim F. Storm <storm@cua.dk> | 37 | 2004-11-01 Kim F. Storm <storm@cua.dk> |
| 2 | 38 | ||
| 3 | * man.el (Man-xref-normal-file): Fix help-echo. | 39 | * man.el (Man-xref-normal-file): Fix help-echo. |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index c47ad2f889d..d1bb65d3358 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-11-01 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * commands.texi (Interactive Call): Add called-interactively-p. | ||
| 4 | |||
| 1 | 2004-10-29 Simon Josefsson <jas@extundo.com> | 5 | 2004-10-29 Simon Josefsson <jas@extundo.com> |
| 2 | 6 | ||
| 3 | * minibuf.texi (Reading a Password): Revert. | 7 | * minibuf.texi (Reading a Password): Revert. |