Mercurial > emacs
changeset 26570:133c30f0647c
Don't duplicate Qheight, Qwidth definitions done elsewhere.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 24 Nov 1999 14:06:26 +0000 |
parents | d5f7eaff00db |
children | bc95d8e47cb9 |
files | src/xdisp.c |
diffstat | 1 files changed, 4 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Wed Nov 24 14:01:54 1999 +0000 +++ b/src/xdisp.c Wed Nov 24 14:06:26 1999 +0000 @@ -248,14 +248,15 @@ /* Names of text properties relevant for redisplay. */ -Lisp_Object Qdisplay, Qrelative_width, Qwidth, Qalign_to; -extern Lisp_Object Qface, Qinvisible, Qimage; +Lisp_Object Qdisplay, Qrelative_width, Qalign_to; +extern Lisp_Object Qface, Qinvisible, Qimage, Qwidth; /* Symbols used in text property values. */ Lisp_Object Qspace, QCalign_to, QCrelative_width, QCrelative_height; -Lisp_Object Qleft_margin, Qright_margin, Qspace_width, Qheight, Qraise; +Lisp_Object Qleft_margin, Qright_margin, Qspace_width, Qraise; Lisp_Object Qmargin; +extern Lisp_Object Qheight; /* Non-nil means highlight trailing whitespace. */ @@ -12662,8 +12663,6 @@ staticpro (&Qdisplay); Qspace_width = intern ("space-width"); staticpro (&Qspace_width); - Qheight = intern ("height"); - staticpro (&Qheight); Qraise = intern ("raise"); staticpro (&Qraise); Qspace = intern ("space"); @@ -12678,8 +12677,6 @@ staticpro (&Qalign_to); QCalign_to = intern (":align-to"); staticpro (&QCalign_to); - Qwidth = intern ("width"); - staticpro (&Qwidth); Qrelative_width = intern ("relative-width"); staticpro (&Qrelative_width); QCrelative_width = intern (":relative-width");