Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b1349114
Commit
b1349114
authored
Mar 16, 2011
by
Paul Eggert
Browse files
* callint.c (quotify_arg, quotify_args): Now static.
parent
9710023e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
src/ChangeLog
src/ChangeLog
+2
-0
src/callint.c
src/callint.c
+2
-2
No files found.
src/ChangeLog
View file @
b1349114
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.
src/callint.c
View file @
b1349114
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment