Mercurial > emacs
comparison src/syntax.c @ 17109:dfe4f98935c4
(describe_syntax): Handle the case that the argument
VALUE is char-table.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Thu, 27 Feb 1997 07:47:24 +0000 |
| parents | f07c36097f33 |
| children | f8d7263cce09 |
comparison
equal
deleted
inserted
replaced
| 17108:259e3e73a4b5 | 17109:dfe4f98935c4 |
|---|---|
| 426 Findent_to (make_number (16), make_number (1)); | 426 Findent_to (make_number (16), make_number (1)); |
| 427 | 427 |
| 428 if (NILP (value)) | 428 if (NILP (value)) |
| 429 { | 429 { |
| 430 insert_string ("default\n"); | 430 insert_string ("default\n"); |
| 431 return; | |
| 432 } | |
| 433 | |
| 434 if (CHAR_TABLE_P (value)) | |
| 435 { | |
| 436 insert_string ("deeper char-table ...\n"); | |
| 431 return; | 437 return; |
| 432 } | 438 } |
| 433 | 439 |
| 434 if (!CONSP (value)) | 440 if (!CONSP (value)) |
| 435 { | 441 { |
