diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-16 00:19:04 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-16 00:19:04 -0700 |
commit | b1349114e9a58791ee0d5e505e05633cc91293f3 (patch) | |
tree | 7a79a1b812b418161af40c14c9c4ca6175eeedf1 /src/callint.c | |
parent | 9710023e8865ce1ac385526bbc44868cd2189cbd (diff) | |
download | emacs-b1349114e9a58791ee0d5e505e05633cc91293f3.tar.gz |
* callint.c (quotify_arg, quotify_args): Now static.
Diffstat (limited to 'src/callint.c')
-rw-r--r-- | src/callint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callint.c b/src/callint.c index 21dd3cd4d9d..af9ee5bb9bd 100644 --- a/src/callint.c +++ b/src/callint.c @@ -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; |