diff options
| author | Kenichi Handa | 2008-05-14 01:39:27 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2008-05-14 01:39:27 +0000 |
| commit | f85064bdd8157a98cdd96270df5721bade59af68 (patch) | |
| tree | d0c44ce6a170149f3e10d543ed77dde90e507458 /src | |
| parent | 3dcc8b84aacc55dc4eb6a82607b7afd88f2b24a6 (diff) | |
| download | emacs-f85064bdd8157a98cdd96270df5721bade59af68.tar.gz emacs-f85064bdd8157a98cdd96270df5721bade59af68.zip | |
(enum pvec_type): New member PREV_FONT.
(Fassoc_string): EXFUN it.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index ab07ea750f4..1752cb865d8 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -350,8 +350,9 @@ enum pvec_type | |||
| 350 | PVEC_HASH_TABLE = 0x40000, | 350 | PVEC_HASH_TABLE = 0x40000, |
| 351 | PVEC_TERMINAL = 0x80000, | 351 | PVEC_TERMINAL = 0x80000, |
| 352 | PVEC_SUB_CHAR_TABLE = 0x100000, | 352 | PVEC_SUB_CHAR_TABLE = 0x100000, |
| 353 | PVEC_OTHER = 0x200000, | 353 | PVEC_FONT = 0x200000, |
| 354 | PVEC_TYPE_MASK = 0x2ffe00 | 354 | PVEC_OTHER = 0x400000, |
| 355 | PVEC_TYPE_MASK = 0x7ffe00 | ||
| 355 | 356 | ||
| 356 | #if 0 /* This is used to make the value of PSEUDOVECTOR_FLAG available to | 357 | #if 0 /* This is used to make the value of PSEUDOVECTOR_FLAG available to |
| 357 | GDB. It doesn't work on OS Alpha. Moved to a variable in | 358 | GDB. It doesn't work on OS Alpha. Moved to a variable in |
| @@ -2974,6 +2975,7 @@ EXFUN (Fread_minibuffer, 2); | |||
| 2974 | EXFUN (Feval_minibuffer, 2); | 2975 | EXFUN (Feval_minibuffer, 2); |
| 2975 | EXFUN (Fread_string, 5); | 2976 | EXFUN (Fread_string, 5); |
| 2976 | EXFUN (Fread_no_blanks_input, 3); | 2977 | EXFUN (Fread_no_blanks_input, 3); |
| 2978 | EXFUN (Fassoc_string, 3); | ||
| 2977 | extern Lisp_Object get_minibuffer P_ ((int)); | 2979 | extern Lisp_Object get_minibuffer P_ ((int)); |
| 2978 | extern void temp_echo_area_glyphs P_ ((Lisp_Object)); | 2980 | extern void temp_echo_area_glyphs P_ ((Lisp_Object)); |
| 2979 | extern void init_minibuf_once P_ ((void)); | 2981 | extern void init_minibuf_once P_ ((void)); |