diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2014-09-23 19:49:00 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2014-09-23 19:49:00 +0400 |
commit | 59e10fbd934323702a4586f50139d58db846bbf1 (patch) | |
tree | 194db3962ed3b518afc92eed10ed16c29f6e0b15 /src/xsmfns.c | |
parent | c03d2c89fbf878575cc46011df44f04103d8e19b (diff) | |
download | emacs-59e10fbd934323702a4586f50139d58db846bbf1.tar.gz |
Use known length of a Lisp string to copy it faster.
* lisp.h (lispstrcpy): New function. Add comment.
* callproc.c (child_setup):
* dbusbind.c (xd_append_arg):
* doc.c (get_doc_string):
* font.c (Ffont_xlfd_name):
* frame.c (xrdb_get_resource):
* process.c (Fmake_network_process, network_interface_info):
* w32fns.c (Fx_open_connection):
* w32proc.c (sys_spawnve):
* xfns.c (select_visual):
* xfont.c (xfont_list):
* xsmfns.c (x_session_initialize):
* xterm.c (x_term_init): Use it.
Diffstat (limited to 'src/xsmfns.c')
-rw-r--r-- | src/xsmfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xsmfns.c b/src/xsmfns.c index 8721cc81b03..5efbfaafa8f 100644 --- a/src/xsmfns.c +++ b/src/xsmfns.c @@ -418,7 +418,7 @@ x_session_initialize (struct x_display_info *dpyinfo) emacs_program[0] = '\0'; if (! EQ (Vinvocation_directory, Qnil)) - strcpy (emacs_program, SSDATA (Vinvocation_directory)); + lispstrcpy (emacs_program, Vinvocation_directory); strcat (emacs_program, SSDATA (Vinvocation_name)); /* The SM protocol says all callbacks are mandatory, so set up all |