diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-12-10 15:07:56 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-12-10 15:07:56 +0000 |
commit | 69157c99605e62661bb2deb653ca7f4042624766 (patch) | |
tree | de75031f769fc3118ff0dbf71d34f7dd58f4496e /lib-src/emacsclient.c | |
parent | c2a008832d8c605ad1d80e04336132351aa36324 (diff) | |
download | emacs-69157c99605e62661bb2deb653ca7f4042624766.tar.gz emacs-69157c99605e62661bb2deb653ca7f4042624766.tar.bz2 emacs-69157c99605e62661bb2deb653ca7f4042624766.zip |
(decode_options): Fix typo.
Diffstat (limited to 'lib-src/emacsclient.c')
-rw-r--r-- | lib-src/emacsclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index db2de82d072..7fbedbce141 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -586,7 +586,7 @@ decode_options (argc, argv) current_frame = 1; #ifdef WINDOWSNT - if (alternate_editor && alternate_editor == '\0') + if (alternate_editor && alternate_editor[0] == '\0') { message (TRUE, "--alternate-editor argument or ALTERNATE_EDITOR variable cannot be\n\ an empty string"); |