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
e01ec2ed
Commit
e01ec2ed
authored
Nov 23, 2014
by
Glenn Morris
Browse files
* src/emacs.c (main) <--version>: Make use of PACKAGE_NAME.
parent
825351bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
src/ChangeLog
src/ChangeLog
+2
-0
src/emacs.c
src/emacs.c
+3
-3
No files found.
src/ChangeLog
View file @
e01ec2ed
2014-11-24 Glenn Morris <rgm@gnu.org>
* emacs.c (main) <--version>: Make use of PACKAGE_NAME.
* Makefile.in (emacs.res): Use ../nt rule, rather than duplicating it.
(ntsource, WINDRES, EMACS_MANIFEST): Remove, now unused.
...
...
src/emacs.c
View file @
e01ec2ed
...
...
@@ -803,10 +803,10 @@ main (int argc, char **argv)
version
=
emacs_version
;
copyright
=
emacs_copyright
;
}
printf
(
"
GNU Emacs %s
\n
"
,
version
);
printf
(
"
%s %s
\n
"
,
PACKAGE_NAME
,
version
);
printf
(
"%s
\n
"
,
copyright
);
printf
(
"
GNU Emac
s comes with ABSOLUTELY NO WARRANTY.
\n
"
);
printf
(
"You may redistribute copies of
Emacs
\n
"
);
printf
(
"
%
s comes with ABSOLUTELY NO WARRANTY.
\n
"
,
PACKAGE_NAME
);
printf
(
"You may redistribute copies of
%s
\n
"
,
PACKAGE_NAME
);
printf
(
"under the terms of the GNU General Public License.
\n
"
);
printf
(
"For more information about these matters, "
);
printf
(
"see the file named COPYING.
\n
"
);
...
...
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