diff options
| author | Andreas Schwab | 1998-12-21 09:59:30 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-12-21 09:59:30 +0000 |
| commit | a3cec380f565c9d6be16439900eb38b87baca4b1 (patch) | |
| tree | 92c09ea375e2390602ee02588bed211e8fa69033 /src | |
| parent | 776ca83dbf7bd202b43e8b3df7973c463ef7303b (diff) | |
| download | emacs-a3cec380f565c9d6be16439900eb38b87baca4b1.tar.gz emacs-a3cec380f565c9d6be16439900eb38b87baca4b1.zip | |
(Fdocumentation): Change the doc string for prefix
commands to make it a complete sentence in one line.
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc.c | 3 |
1 files changed, 1 insertions, 2 deletions
| @@ -334,8 +334,7 @@ string is passed through `substitute-command-keys'.") | |||
| 334 | if (!SYMBOLP (funcar)) | 334 | if (!SYMBOLP (funcar)) |
| 335 | return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | 335 | return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); |
| 336 | else if (EQ (funcar, Qkeymap)) | 336 | else if (EQ (funcar, Qkeymap)) |
| 337 | return build_string ("Prefix command (definition is a keymap associating keystrokes with\n\ | 337 | return build_string ("Prefix command (definition is a keymap associating keystrokes with commands)."); |
| 338 | subcommands.)"); | ||
| 339 | else if (EQ (funcar, Qlambda) | 338 | else if (EQ (funcar, Qlambda) |
| 340 | || EQ (funcar, Qautoload)) | 339 | || EQ (funcar, Qautoload)) |
| 341 | { | 340 | { |