diff options
| author | Dave Love | 1999-11-24 14:06:26 +0000 |
|---|---|---|
| committer | Dave Love | 1999-11-24 14:06:26 +0000 |
| commit | a7e27ef73645516f10bc71170b6271124782306f (patch) | |
| tree | b074d61ca36e170012cf814742907ffad36260b1 /src | |
| parent | cee971adccf14f34196c5e5df8a5b796309c22e6 (diff) | |
| download | emacs-a7e27ef73645516f10bc71170b6271124782306f.tar.gz emacs-a7e27ef73645516f10bc71170b6271124782306f.zip | |
Don't duplicate Qheight, Qwidth definitions done elsewhere.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index caa887b39a6..26acf61d216 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -248,14 +248,15 @@ Lisp_Object Vinhibit_redisplay, Qinhibit_redisplay; | |||
| 248 | 248 | ||
| 249 | /* Names of text properties relevant for redisplay. */ | 249 | /* Names of text properties relevant for redisplay. */ |
| 250 | 250 | ||
| 251 | Lisp_Object Qdisplay, Qrelative_width, Qwidth, Qalign_to; | 251 | Lisp_Object Qdisplay, Qrelative_width, Qalign_to; |
| 252 | extern Lisp_Object Qface, Qinvisible, Qimage; | 252 | extern Lisp_Object Qface, Qinvisible, Qimage, Qwidth; |
| 253 | 253 | ||
| 254 | /* Symbols used in text property values. */ | 254 | /* Symbols used in text property values. */ |
| 255 | 255 | ||
| 256 | Lisp_Object Qspace, QCalign_to, QCrelative_width, QCrelative_height; | 256 | Lisp_Object Qspace, QCalign_to, QCrelative_width, QCrelative_height; |
| 257 | Lisp_Object Qleft_margin, Qright_margin, Qspace_width, Qheight, Qraise; | 257 | Lisp_Object Qleft_margin, Qright_margin, Qspace_width, Qraise; |
| 258 | Lisp_Object Qmargin; | 258 | Lisp_Object Qmargin; |
| 259 | extern Lisp_Object Qheight; | ||
| 259 | 260 | ||
| 260 | /* Non-nil means highlight trailing whitespace. */ | 261 | /* Non-nil means highlight trailing whitespace. */ |
| 261 | 262 | ||
| @@ -12662,8 +12663,6 @@ syms_of_xdisp () | |||
| 12662 | staticpro (&Qdisplay); | 12663 | staticpro (&Qdisplay); |
| 12663 | Qspace_width = intern ("space-width"); | 12664 | Qspace_width = intern ("space-width"); |
| 12664 | staticpro (&Qspace_width); | 12665 | staticpro (&Qspace_width); |
| 12665 | Qheight = intern ("height"); | ||
| 12666 | staticpro (&Qheight); | ||
| 12667 | Qraise = intern ("raise"); | 12666 | Qraise = intern ("raise"); |
| 12668 | staticpro (&Qraise); | 12667 | staticpro (&Qraise); |
| 12669 | Qspace = intern ("space"); | 12668 | Qspace = intern ("space"); |
| @@ -12678,8 +12677,6 @@ syms_of_xdisp () | |||
| 12678 | staticpro (&Qalign_to); | 12677 | staticpro (&Qalign_to); |
| 12679 | QCalign_to = intern (":align-to"); | 12678 | QCalign_to = intern (":align-to"); |
| 12680 | staticpro (&QCalign_to); | 12679 | staticpro (&QCalign_to); |
| 12681 | Qwidth = intern ("width"); | ||
| 12682 | staticpro (&Qwidth); | ||
| 12683 | Qrelative_width = intern ("relative-width"); | 12680 | Qrelative_width = intern ("relative-width"); |
| 12684 | staticpro (&Qrelative_width); | 12681 | staticpro (&Qrelative_width); |
| 12685 | QCrelative_width = intern (":relative-width"); | 12682 | QCrelative_width = intern (":relative-width"); |