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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
8edd4a2b
Commit
8edd4a2b
authored
Jun 26, 2012
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/eval.c (Fapply): Allow calling it with a single argument.
parent
3ea82dff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
src/ChangeLog
src/ChangeLog
+5
-1
src/eval.c
src/eval.c
+1
-1
No files found.
src/ChangeLog
View file @
8edd4a2b
2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
* eval.c (Fapply): Allow calling it with a single argument.
2012-06-26 Eli Zaretskii <eliz@gnu.org>
* s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
...
...
@@ -9,7 +13,7 @@
* alloc.c (allocate_window): Zero out non-Lisp part of newly
allocated window.
(allocate_process): Likewise for new process.
(allocate_terminal): Change
d
to use offsetof.
(allocate_terminal): Change to use offsetof.
(allocate_frame): Likewise.
* frame.c (make_frame): Omit redundant initialization.
* window.c (make_parent_window): Use memset.
...
...
src/eval.c
View file @
8edd4a2b
...
...
@@ -2242,7 +2242,7 @@ eval_sub (Lisp_Object form)
return
val
;
}
DEFUN
(
"apply"
,
Fapply
,
Sapply
,
2
,
MANY
,
0
,
DEFUN
(
"apply"
,
Fapply
,
Sapply
,
1
,
MANY
,
0
,
doc
:
/* Call FUNCTION with our remaining args, using our last arg as list of args.
Then return the value FUNCTION returns.
Thus, (apply '+ 1 2 '(3 4)) returns 10.
...
...
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