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
72cb32cf
Commit
72cb32cf
authored
May 30, 2012
by
Paul Eggert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* alloc.c, lisp.h (make_pure_vector): Now static.
parent
61b108cc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
src/ChangeLog
src/ChangeLog
+4
-0
src/alloc.c
src/alloc.c
+2
-1
src/lisp.h
src/lisp.h
+0
-1
No files found.
src/ChangeLog
View file @
72cb32cf
2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
* alloc.c, lisp.h (make_pure_vector): Now static.
2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
* eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
...
...
src/alloc.c
View file @
72cb32cf
...
...
@@ -273,6 +273,7 @@ static Lisp_Object Qpost_gc_hook;
static
void
mark_buffer
(
Lisp_Object
);
static
void
mark_terminals
(
void
);
static
void
gc_sweep
(
void
);
static
Lisp_Object
make_pure_vector
(
ptrdiff_t
);
static
void
mark_glyph_matrix
(
struct
glyph_matrix
*
);
static
void
mark_face_cache
(
struct
face_cache
*
);
...
...
@@ -4937,7 +4938,7 @@ make_pure_float (double num)
/* Return a vector with room for LEN Lisp_Objects allocated from
pure space. */
Lisp_Object
static
Lisp_Object
make_pure_vector
(
ptrdiff_t
len
)
{
Lisp_Object
new
;
...
...
src/lisp.h
View file @
72cb32cf
...
...
@@ -2871,7 +2871,6 @@ EXFUN (Fpurecopy, 1);
extern
Lisp_Object
make_pure_string
(
const
char
*
,
ptrdiff_t
,
ptrdiff_t
,
int
);
extern
Lisp_Object
make_pure_c_string
(
const
char
*
data
);
extern
Lisp_Object
pure_cons
(
Lisp_Object
,
Lisp_Object
);
extern
Lisp_Object
make_pure_vector
(
ptrdiff_t
);
EXFUN
(
Fgarbage_collect
,
0
);
EXFUN
(
Fmake_byte_code
,
MANY
);
EXFUN
(
Fmake_bool_vector
,
2
);
...
...
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