summaryrefslogtreecommitdiff
path: root/doc/lispref/symbols.texi
diff options
context:
space:
mode:
authorChong Yidong <cyd@gnu.org>2012-10-30 08:29:37 +0800
committerChong Yidong <cyd@gnu.org>2012-10-30 08:29:37 +0800
commite29e39c9c6aee68a50fef5149cc3acdfa74fec72 (patch)
treec88836ed25faf44771754698c5508fcffb2b96d7 /doc/lispref/symbols.texi
parentfc83c2de544c15ce8e4e8fc7c6dd68cc4956a457 (diff)
downloademacs-e29e39c9c6aee68a50fef5149cc3acdfa74fec72.tar.gz
Document more Emacs 24.3 changes.
* frames.texi (Visibility of Frames): Document tty-top-frame. * loading.texi (Autoload): Document autoloadp, autoload-do-load. * symbols.texi (Symbol Plists): Document function-get.
Diffstat (limited to 'doc/lispref/symbols.texi')
-rw-r--r--doc/lispref/symbols.texi6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/lispref/symbols.texi b/doc/lispref/symbols.texi
index d7497ab6f3f..326c6cd4ab2 100644
--- a/doc/lispref/symbols.texi
+++ b/doc/lispref/symbols.texi
@@ -487,6 +487,12 @@ using @code{eq}, so any object is a legitimate property.
See @code{put} for an example.
@end defun
+@defun function-get symbol property
+This function is identical to @code{get}, except that if @var{symbol}
+is the name of a function alias, it looks in the property list of the
+symbol naming the actual function. @xref{Defining Functions}.
+@end defun
+
@defun put symbol property value
This function puts @var{value} onto @var{symbol}'s property list under
the property name @var{property}, replacing any previous property value.