comparison lib-src/emacsclient.c @ 74127:46dc2e041725

(print_help_and_exit): Tweak message contents and tabs/spaces to improve alignment in message boxes.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 23 Nov 2006 01:50:59 +0000
parents bee73d83d967
children 8eceefbbcde7
comparison
equal deleted inserted replaced
74126:681d59f945bb 74127:46dc2e041725
276 "Usage: %s [OPTIONS] FILE...\n\ 276 "Usage: %s [OPTIONS] FILE...\n\
277 Tell the Emacs server to visit the specified files.\n\ 277 Tell the Emacs server to visit the specified files.\n\
278 Every FILE can be either just a FILENAME or [+LINE[:COLUMN]] FILENAME.\n\ 278 Every FILE can be either just a FILENAME or [+LINE[:COLUMN]] FILENAME.\n\
279 \n\ 279 \n\
280 The following OPTIONS are accepted:\n\ 280 The following OPTIONS are accepted:\n\
281 -V, --version Just print a version info and return\n\ 281 \n\
282 -H, --help Print this usage information message\n\ 282 -V, --version Just print version info and return\n\
283 -n, --no-wait Don't wait for the server to return\n\ 283 -H, --help Print this usage information message\n\
284 -e, --eval Evaluate the FILE arguments as ELisp expressions\n\ 284 -e, --eval Evaluate FILE arguments as Lisp expressions\n\
285 -d, --display=DISPLAY Visit the file in the given display\n" 285 -n, --no-wait Don't wait for the server to return\n\
286 -d, --display=DISPLAY Visit the file in the given display\n"
286 #ifndef NO_SOCKETS_IN_FILE_SYSTEM 287 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
287 "-s, --socket-name=FILENAME\n\ 288 "-s, --socket-name=FILENAME\n\
288 Set the filename of the UNIX socket for communication\n" 289 Set filename of the UNIX socket for communication\n"
289 #endif 290 #endif
290 "-f, --server-file=FILENAME\n\ 291 "-f, --server-file=FILENAME\n\
291 Set the filename of the TCP configuration file\n\ 292 Set filename of the TCP authentication file\n\
292 -a, --alternate-editor=EDITOR\n\ 293 -a, --alternate-editor=EDITOR\n\
293 Editor to fallback to if the server is not running\n\ 294 Editor to fallback to if server is not running\n\
294 \n\ 295 \n\
295 Report bugs to bug-gnu-emacs@gnu.org.\n", progname); 296 Report bugs to bug-gnu-emacs@gnu.org.\n", progname);
296 exit (EXIT_SUCCESS); 297 exit (EXIT_SUCCESS);
297 } 298 }
298 299