Mercurial > hg > xemacs-beta
comparison src/lisp.h @ 707:a307f9a2021d
[xemacs-hg @ 2001-12-20 05:49:28 by andyp]
sync with 21-4-6-windows
author | andyp |
---|---|
date | Thu, 20 Dec 2001 05:49:48 +0000 |
parents | fdefd0186b75 |
children | b1f74adcc1ff |
comparison
equal
deleted
inserted
replaced
706:c9bf82d465b5 | 707:a307f9a2021d |
---|---|
2414 arith_grtr, | 2414 arith_grtr, |
2415 arith_less_or_equal, | 2415 arith_less_or_equal, |
2416 arith_grtr_or_equal }; | 2416 arith_grtr_or_equal }; |
2417 Lisp_Object arithcompare (Lisp_Object, Lisp_Object, enum arith_comparison); | 2417 Lisp_Object arithcompare (Lisp_Object, Lisp_Object, enum arith_comparison); |
2418 | 2418 |
2419 /* Do NOT use word_to_lisp or wasteful_word_to_lisp to decode time_t's | |
2420 unless you KNOW arg is non-negative. They cannot return negative | |
2421 values! Use make_time. */ | |
2419 Lisp_Object word_to_lisp (unsigned int); | 2422 Lisp_Object word_to_lisp (unsigned int); |
2420 unsigned int lisp_to_word (Lisp_Object); | 2423 unsigned int lisp_to_word (Lisp_Object); |
2421 | 2424 |
2422 /* Defined in dired.c */ | 2425 /* Defined in dired.c */ |
2423 Lisp_Object make_directory_hash_table (const char *); | 2426 Lisp_Object make_directory_hash_table (const char *); |
2452 Charbpos charbpos_clip_to_bounds (Charbpos, Charbpos, Charbpos); | 2455 Charbpos charbpos_clip_to_bounds (Charbpos, Charbpos, Charbpos); |
2453 Bytebpos bytebpos_clip_to_bounds (Bytebpos, Bytebpos, Bytebpos); | 2456 Bytebpos bytebpos_clip_to_bounds (Bytebpos, Bytebpos, Bytebpos); |
2454 void buffer_insert1 (struct buffer *, Lisp_Object); | 2457 void buffer_insert1 (struct buffer *, Lisp_Object); |
2455 Lisp_Object make_string_from_buffer (struct buffer *, Charbpos, Charcount); | 2458 Lisp_Object make_string_from_buffer (struct buffer *, Charbpos, Charcount); |
2456 Lisp_Object make_string_from_buffer_no_extents (struct buffer *, Charbpos, Charcount); | 2459 Lisp_Object make_string_from_buffer_no_extents (struct buffer *, Charbpos, Charcount); |
2460 Lisp_Object make_time (time_t); | |
2457 Lisp_Object save_excursion_save (void); | 2461 Lisp_Object save_excursion_save (void); |
2458 Lisp_Object save_restriction_save (void); | 2462 Lisp_Object save_restriction_save (void); |
2459 Lisp_Object save_excursion_restore (Lisp_Object); | 2463 Lisp_Object save_excursion_restore (Lisp_Object); |
2460 Lisp_Object save_restriction_restore (Lisp_Object); | 2464 Lisp_Object save_restriction_restore (Lisp_Object); |
2461 | 2465 |