diff options
| author | Miles Bader | 2006-07-19 00:42:56 +0000 |
|---|---|---|
| committer | Miles Bader | 2006-07-19 00:42:56 +0000 |
| commit | 63db3c1b3ffa669435b10aa362115ef664990ab2 (patch) | |
| tree | a62f68b147d4265ce993136af897d4f348570594 /src/doc.c | |
| parent | 2988d6b36d310ba98ea1fed570142f436804fc18 (diff) | |
| parent | 83676aa2e399363120942ef5ea19f8af6b75e8e8 (diff) | |
| download | emacs-63db3c1b3ffa669435b10aa362115ef664990ab2.tar.gz emacs-63db3c1b3ffa669435b10aa362115ef664990ab2.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 343-356)
- Update from CVS
- Update for ERC 5.1.3.
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 113-115)
- Merge from emacs--devo--0
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-90
Diffstat (limited to 'src/doc.c')
| -rw-r--r-- | src/doc.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -416,7 +416,7 @@ string is passed through `substitute-command-keys'. */) | |||
| 416 | { | 416 | { |
| 417 | funcar = Fcar (fun); | 417 | funcar = Fcar (fun); |
| 418 | if (!SYMBOLP (funcar)) | 418 | if (!SYMBOLP (funcar)) |
| 419 | return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | 419 | xsignal1 (Qinvalid_function, fun); |
| 420 | else if (EQ (funcar, Qkeymap)) | 420 | else if (EQ (funcar, Qkeymap)) |
| 421 | return build_string ("Prefix command (definition is a keymap associating keystrokes with commands)."); | 421 | return build_string ("Prefix command (definition is a keymap associating keystrokes with commands)."); |
| 422 | else if (EQ (funcar, Qlambda) | 422 | else if (EQ (funcar, Qlambda) |
| @@ -443,7 +443,7 @@ string is passed through `substitute-command-keys'. */) | |||
| 443 | else | 443 | else |
| 444 | { | 444 | { |
| 445 | oops: | 445 | oops: |
| 446 | Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | 446 | xsignal1 (Qinvalid_function, fun); |
| 447 | } | 447 | } |
| 448 | 448 | ||
| 449 | /* If DOC is 0, it's typically because of a dumped file missing | 449 | /* If DOC is 0, it's typically because of a dumped file missing |