diff options
| author | Paul Eggert | 2012-05-26 16:14:36 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-05-26 16:14:36 -0700 |
| commit | caf8a9b2b301aba06735d403317b75b41df59bfe (patch) | |
| tree | bfafb3cc0cf8a2f2394b4ed721e7c3d4891b78ab /lib/getopt1.c | |
| parent | fe453991eafc32a890297a2003ac532b9f579f92 (diff) | |
| download | emacs-caf8a9b2b301aba06735d403317b75b41df59bfe.tar.gz emacs-caf8a9b2b301aba06735d403317b75b41df59bfe.zip | |
Merge from gnulib.
Fixes: debbugs:11527
Diffstat (limited to 'lib/getopt1.c')
| -rw-r--r-- | lib/getopt1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/getopt1.c b/lib/getopt1.c index 36568024cc2..fb2a8f5a7b1 100644 --- a/lib/getopt1.c +++ b/lib/getopt1.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* getopt_long and getopt_long_only entry points for GNU getopt. | 1 | /* getopt_long and getopt_long_only entry points for GNU getopt. |
| 2 | Copyright (C) 1987-1994, 1996-1998, 2004, 2006, 2009-2011 Free Software | 2 | Copyright (C) 1987-1994, 1996-1998, 2004, 2006, 2009-2012 Free Software |
| 3 | Foundation, Inc. | 3 | Foundation, Inc. |
| 4 | This file is part of the GNU C Library. | 4 | This file is part of the GNU C Library. |
| 5 | 5 | ||
| @@ -141,11 +141,11 @@ main (int argc, char **argv) | |||
| 141 | break; | 141 | break; |
| 142 | 142 | ||
| 143 | case 'c': | 143 | case 'c': |
| 144 | printf ("option c with value `%s'\n", optarg); | 144 | printf ("option c with value '%s'\n", optarg); |
| 145 | break; | 145 | break; |
| 146 | 146 | ||
| 147 | case 'd': | 147 | case 'd': |
| 148 | printf ("option d with value `%s'\n", optarg); | 148 | printf ("option d with value '%s'\n", optarg); |
| 149 | break; | 149 | break; |
| 150 | 150 | ||
| 151 | case '?': | 151 | case '?': |