aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorChong Yidong2012-08-15 01:10:38 +0800
committerChong Yidong2012-08-15 01:10:38 +0800
commit4abcdac823a757bffc204f5eb074eb09ad69e58a (patch)
tree636778c2f514810defc0164b1d10d96970e1ab8b /src/data.c
parent55802e4a3dc1d6b1ffa05c193cdd94f9f69c1a41 (diff)
downloademacs-4abcdac823a757bffc204f5eb074eb09ad69e58a.tar.gz
emacs-4abcdac823a757bffc204f5eb074eb09ad69e58a.zip
More doc fixes.
* lisp/minibuffer.el (read-file-name): Doc fix. * character.c (Fcharacterp): Doc fix (Bug#12076). * data.c (Findirect_variable): Doc fix (Bug#11040). * editfns.c (Fsave_current_buffer): Doc fix (Bug#11542). Fixes: debbugs:11542 debbugs:11040 debbugs:12076 debbugs:10881
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c
index 3e278e8bac3..d0ef5734abc 100644
--- a/src/data.c
+++ b/src/data.c
@@ -808,10 +808,12 @@ indirect_variable (struct Lisp_Symbol *symbol)
808 808
809DEFUN ("indirect-variable", Findirect_variable, Sindirect_variable, 1, 1, 0, 809DEFUN ("indirect-variable", Findirect_variable, Sindirect_variable, 1, 1, 0,
810 doc: /* Return the variable at the end of OBJECT's variable chain. 810 doc: /* Return the variable at the end of OBJECT's variable chain.
811If OBJECT is a symbol, follow all variable indirections and return the final 811If OBJECT is a symbol, follow its variable indirections (if any), and
812variable. If OBJECT is not a symbol, just return it. 812return the variable at the end of the chain of aliases. See Info node
813Signal a cyclic-variable-indirection error if there is a loop in the 813`(elisp)Variable Aliases'.
814variable chain of symbols. */) 814
815If OBJECT is not a symbol, just return it. If there is a loop in the
816chain of aliases, signal a `cyclic-variable-indirection' error. */)
815 (Lisp_Object object) 817 (Lisp_Object object)
816{ 818{
817 if (SYMBOLP (object)) 819 if (SYMBOLP (object))