]> git.eshelyaron.com Git - emacs.git/commitdiff
* callint.c (quotify_arg, quotify_args): Now static.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 16 Mar 2011 07:19:04 +0000 (00:19 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 16 Mar 2011 07:19:04 +0000 (00:19 -0700)
src/ChangeLog
src/callint.c

index 88d05b56a0fd0b21cefd815910c2f67110294efd..d87c1d0fbcb12b97367a461ead4fab4251c1d32e 100644 (file)
@@ -1,5 +1,7 @@
 2011-03-16  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * callint.c (quotify_arg, quotify_args): Now static.
+
        * lisp.h (get_system_name, get_operating_system_release):
        Move decls here, to check interfaces.
        * process.c (get_operating_system_release): Move decl to lisp.h.
index 21dd3cd4d9d4f6af07fbc0a890ad70b1dfc61556..af9ee5bb9bdf0c6e9d337496b982b7f46e398223 100644 (file)
@@ -118,7 +118,7 @@ usage: (interactive &optional ARGS)  */)
 
 /* Quotify EXP: if EXP is constant, return it.
    If EXP is not constant, return (quote EXP).  */
-Lisp_Object
+static Lisp_Object
 quotify_arg (register Lisp_Object exp)
 {
   if (!INTEGERP (exp) && !STRINGP (exp)
@@ -129,7 +129,7 @@ quotify_arg (register Lisp_Object exp)
 }
 
 /* Modify EXP by quotifying each element (except the first).  */
-Lisp_Object
+static Lisp_Object
 quotify_args (Lisp_Object exp)
 {
   register Lisp_Object tail;