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
87a98b1a
Commit
87a98b1a
authored
Jun 23, 1997
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fdump_emacs): Error if not run in batch mode.
parent
a53c647b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
src/emacs.c
src/emacs.c
+6
-1
No files found.
src/emacs.c
View file @
87a98b1a
...
@@ -1488,13 +1488,18 @@ This is used in the file `loadup.el' when building Emacs.\n\
...
@@ -1488,13 +1488,18 @@ This is used in the file `loadup.el' when building Emacs.\n\
\n
\
\n
\
Bind `command-line-processed' to nil before dumping,
\n
\
Bind `command-line-processed' to nil before dumping,
\n
\
if you want the dumped Emacs to process its command line
\n
\
if you want the dumped Emacs to process its command line
\n
\
and announce itself normally when it is run."
)
and announce itself normally when it is run.
\n
\
\n
\
You must run Emacs in batch mode in order to dump it."
)
(
filename
,
symfile
)
(
filename
,
symfile
)
Lisp_Object
filename
,
symfile
;
Lisp_Object
filename
,
symfile
;
{
{
extern
char
my_edata
[];
extern
char
my_edata
[];
Lisp_Object
tem
;
Lisp_Object
tem
;
if
(
!
noninteractive
)
error
(
"Dumping Emacs works only in batch mode"
);
CHECK_STRING
(
filename
,
0
);
CHECK_STRING
(
filename
,
0
);
filename
=
Fexpand_file_name
(
filename
,
Qnil
);
filename
=
Fexpand_file_name
(
filename
,
Qnil
);
if
(
!
NILP
(
symfile
))
if
(
!
NILP
(
symfile
))
...
...
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