aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2004-11-01 07:48:44 +0000
committerRichard M. Stallman <[email protected]>2004-11-01 07:48:44 +0000
commit2d1ef312c83d551dab1416d532652492bf7aead0 (patch)
tree287b92b7ecd1048617571598aae7d0e38d0e2ffb
parente2c76fd857e1174126d92b134fd76def53c65b40 (diff)
*** empty log message ***
-rw-r--r--admin/FOR-RELEASE6
-rw-r--r--etc/NEWS7
-rw-r--r--etc/TODO2
-rw-r--r--lisp/ChangeLog36
-rw-r--r--lispref/ChangeLog4
5 files changed, 55 insertions, 0 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index 1898cf4dea..864f0285ab 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -18,11 +18,17 @@ redisplay uses an invalidated face_id with FACE_FROM_ID
which then returns a NULL pointer. Said to happen with
isearch faces.
+* LOSSAGE
+
+** Clean up flymake.el to follow Emacs Lisp conventions.
* GTK RELATED BUGS
** Make GTK scrollbars behave like others w.r.t. overscrolling.
+** Make GTK update the menu bar in two stages, as with Xt,
+ so that the first can run Lisp code, while only the second
+ needs BLOCK_INPUT.
* DOCUMENTATION
diff --git a/etc/NEWS b/etc/NEWS
index bb3d762f8b..0d5adfdc98 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2313,6 +2313,13 @@ configuration files.
* Lisp Changes in Emacs 21.4
+++
+** The new function `called-interactively-p' does what many people
+have mistakenly believed `interactively-p' did: it returns t if the
+calling function was called through `call-interactively'.
+This should only be used when you cannot add a new "interactively"
+argument to the command.
+
++++
** An interactive specification may now use the code letter 'U' to get
the up-event that was discarded in case the last key sequence read for a
previous 'k' or 'K' argument was a down-event; otherwise nil is used.
diff --git a/etc/TODO b/etc/TODO
index defc43892c..21a7c7d8dc 100644
--- a/etc/TODO
+++ b/etc/TODO
@@ -85,6 +85,8 @@ to the FSF.
at the same time and do it in a context-sensitive way.
*** ability to add mode-specific data to the partial-parse-state.
+** Add a way to convert a keyboard macro to equivalent Lisp code.
+
** Have a command suggestion help system that recognizes patterns
of commands which could be replaced with a simpler common command.
It should not make more than one suggestion per 10 minutes.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ae115a20c1..e5dd9b7f3f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,39 @@
+2004-11-01 Richard M. Stallman <[email protected]>
+
+ * allout.el (allout group): Add :version.
+ (allout-init): Don't use interactive-p.
+ (allout-ascend-to-depth, allout-ascend, allout-end-of-level)
+ (allout-forward-current-level, allout-backward-current-level):
+ Don't use interactive-p.
+
+ * textmodes/bibtex.el (bibtex-make-field): Don't use interactive-p.
+ (bibtex-find-text): Likewise.
+
+ * progmodes/vhdl-mode.el (vhdl-fill-region)
+ (vhdl-beginning-of-statement): Don't use interactive-p.
+
+ * progmodes/idlwave.el (idlwave-update-routine-info):
+ Don't use interactive-p.
+
+ * progmodes/idlw-shell.el (idlwave-shell-send-char):
+ Don't use interactive-p.
+
+ * progmodes/cperl-mode.el (cperl-switch-to-doc-buffer):
+ Don't use interactive-p.
+
+ * progmodes/ada-xref.el (ada-make-body-gnatstub):
+ Don't use interactive-p.
+
+ * play/fortune.el (fortune-to-signature): Don't use interactive-p.
+ (fortune-in-buffer): Doc fix.
+
+ * play/5x5.el (5x5-new-game): Set up the buffer even if not interactive.
+
+ * net/eudc.el (eudc-display-records): Use with-output-to-temp-buffer;
+ don't select the temporary buffer.
+ (eudc-get-email): New optional arg ERROR; don't use interactive-p.
+ (eudc-get-phone): Likewise.
+
2004-11-01 Kim F. Storm <[email protected]>
* man.el (Man-xref-normal-file): Fix help-echo.
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index c47ad2f889..d1bb65d335 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
+2004-11-01 Richard M. Stallman <[email protected]>
+
+ * commands.texi (Interactive Call): Add called-interactively-p.
+
2004-10-29 Simon Josefsson <[email protected]>
* minibuf.texi (Reading a Password): Revert.