emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/data.c


From: Thien-Thi Nguyen
Subject: [Emacs-diffs] Changes to emacs/src/data.c
Date: Fri, 10 Feb 2006 22:34:25 +0000

Index: emacs/src/data.c
diff -u emacs/src/data.c:1.261 emacs/src/data.c:1.262
--- emacs/src/data.c:1.261      Fri Feb 10 00:00:31 2006
+++ emacs/src/data.c    Fri Feb 10 22:34:24 2006
@@ -1929,15 +1929,15 @@
 
 DEFUN ("indirect-function", Findirect_function, Sindirect_function, 1, 2, 0,
        doc: /* Return the function at the end of OBJECT's function chain.
-If OBJECT is a symbol, follow all function indirections and return the final
-function binding.
-If OBJECT is not a symbol, just return it.
-If optional arg NOERROR is nil, signal a void-function error if
-the final symbol is unbound.  Otherwise, just return nil is unbound.
+If OBJECT is not a symbol, just return it.  Otherwise, follow all
+function indirections to find the final function binding and return it.
+If the final symbol in the chain is unbound, signal a void-function error.
+Optional arg NOERROR non-nil means to return nil instead of signalling.
 Signal a cyclic-function-indirection error if there is a loop in the
 function chain of symbols.  */)
-(object, noerror)
+     (object, noerror)
      register Lisp_Object object;
+     Lisp_Object noerror;
 {
   Lisp_Object result;
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]