diff options
| author | Joseph Arceneaux | 1992-10-02 22:32:00 +0000 |
|---|---|---|
| committer | Joseph Arceneaux | 1992-10-02 22:32:00 +0000 |
| commit | cde20f4168f268865b5eabb956f69a8291a7bdfa (patch) | |
| tree | 3d465a111312138b12ae3e5eacf6dfc2086ebb80 /src | |
| parent | 03ad6beb25dfe437fbe6cb8b6ac275792a8908ff (diff) | |
| download | emacs-cde20f4168f268865b5eabb956f69a8291a7bdfa.tar.gz emacs-cde20f4168f268865b5eabb956f69a8291a7bdfa.zip | |
* lisp.h: Declare Qbuffer_or_string_p.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index 32048e9a29d..27344f4ca67 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -445,9 +445,9 @@ struct interval | |||
| 445 | 445 | ||
| 446 | unsigned char write_protect; /* Non-zero means can't modify. */ | 446 | unsigned char write_protect; /* Non-zero means can't modify. */ |
| 447 | unsigned char visible; /* Zero means don't display. */ | 447 | unsigned char visible; /* Zero means don't display. */ |
| 448 | unsigned char front_hungry; /* Non-zero means text inserted just | 448 | unsigned char front_sticky; /* Non-zero means text inserted just |
| 449 | before this interval goes into it. */ | 449 | before this interval goes into it. */ |
| 450 | unsigned char rear_hungry; /* Likewise for just after it. */ | 450 | unsigned char rear_sticky; /* Likewise for just after it. */ |
| 451 | 451 | ||
| 452 | Lisp_Object plist; /* Properties of this interval. */ | 452 | Lisp_Object plist; /* Properties of this interval. */ |
| 453 | }; | 453 | }; |
| @@ -908,6 +908,7 @@ extern Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp; | |||
| 908 | extern Lisp_Object Qchar_or_string_p, Qmarkerp, Qvectorp; | 908 | extern Lisp_Object Qchar_or_string_p, Qmarkerp, Qvectorp; |
| 909 | extern Lisp_Object Qinteger_or_marker_p, Qnumber_or_marker_p; | 909 | extern Lisp_Object Qinteger_or_marker_p, Qnumber_or_marker_p; |
| 910 | extern Lisp_Object Qboundp, Qfboundp; | 910 | extern Lisp_Object Qboundp, Qfboundp; |
| 911 | extern Lisp_Object Qbuffer_or_string_p; | ||
| 911 | extern Lisp_Object Qcdr; | 912 | extern Lisp_Object Qcdr; |
| 912 | 913 | ||
| 913 | #ifdef LISP_FLOAT_TYPE | 914 | #ifdef LISP_FLOAT_TYPE |