summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2024-03-22 17:03:15 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2024-03-22 17:03:15 -0400
commit3197d7015b854944e326d68c5307b38f0a0d2d53 (patch)
tree473797b2ad737d4c256709d53fbfbe15318ddb83 /etc
parent7269a2f1586733bd03b569608bd77112b2e6487f (diff)
downloademacs-3197d7015b854944e326d68c5307b38f0a0d2d53.tar.gz
etc/NEWS: Document the new behavior of `describe-function`
I pushed commit accd79c93935 by accident. Related to bug#69935
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index eda84d588a8..f4b4c30855c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -108,6 +108,12 @@ to your init:
* Changes in Emacs 30.1
+** 'describe-function' now shows the type of the function object.
+The text used to say things like "car is is a built-in function"
+whereas it now says "car is a primitive-function" where "primitive-function"
+is the symbol returned by `cl-type-of` and you can click on it to get
+information about that type.
+
** 'advice-remove' is now an interactive command.
When called interactively, 'advice-remove' now prompts for an advised
function to the advice to remove.