comparison src/category.c @ 19659:315acc2627fe

(describe_category): Handle a sub-chartable.
author Richard M. Stallman <rms@gnu.org>
date Mon, 01 Sep 1997 17:54:37 +0000
parents 614b916ff5bf
children 16f5b56c2f68
comparison
equal deleted inserted replaced
19658:063c22255157 19659:315acc2627fe
462 Findent_to (make_number (16), make_number (1)); 462 Findent_to (make_number (16), make_number (1));
463 463
464 if (NILP (value)) 464 if (NILP (value))
465 { 465 {
466 insert_string ("default\n"); 466 insert_string ("default\n");
467 return;
468 }
469
470 if (CHAR_TABLE_P (value))
471 {
472 insert_string ("deeper char-table ...\n");
467 return; 473 return;
468 } 474 }
469 475
470 if (!CATEGORY_SET_P (value)) 476 if (!CATEGORY_SET_P (value))
471 { 477 {