aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2012-11-08 16:02:10 -0500
committerStefan Monnier2012-11-08 16:02:10 -0500
commitde5ef41a76f05eb072ef06b053e543ce67fa3241 (patch)
tree80dbe2a7a6277ce875b230df0d76c0e853a2ef34 /src
parenta23c4171a74f79674172683b9b227e036109cf54 (diff)
downloademacs-de5ef41a76f05eb072ef06b053e543ce67fa3241.tar.gz
emacs-de5ef41a76f05eb072ef06b053e543ce67fa3241.zip
* src/xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
(Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed) (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded): Remove unused vars.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog19
-rw-r--r--src/xfaces.c17
2 files changed, 13 insertions, 23 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a90dfd97ec3..45e97ddd93c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
12012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
4 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
5 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
6 Remove unused vars.
7
12012-11-08 Jan Djärv <jan.h.d@swipnet.se> 82012-11-08 Jan Djärv <jan.h.d@swipnet.se>
2 9
3 * image.c (xpm_make_color_table_h): Fix compiler error because 10 * image.c (xpm_make_color_table_h): Fix compiler error because
@@ -225,8 +232,8 @@
225 232
226 Remove EMACS_OUTQSIZE+sleep hack. 233 Remove EMACS_OUTQSIZE+sleep hack.
227 * dispnew.c (update_frame_1): Remove hack for terminals slower 234 * dispnew.c (update_frame_1): Remove hack for terminals slower
228 than 2400 bps, which throttled Emacs by having it sleep. This 235 than 2400 bps, which throttled Emacs by having it sleep.
229 code hasn't worked since at least 2007, when the multi-tty stuff 236 This code hasn't worked since at least 2007, when the multi-tty stuff
230 was added, and anyway those old terminals are long dead. 237 was added, and anyway those old terminals are long dead.
231 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even 238 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
232 without the dispnew.c change, as dispnew.c doesn't include systty.h. 239 without the dispnew.c change, as dispnew.c doesn't include systty.h.
@@ -265,8 +272,8 @@
265 waitpid only on subprocesses that Emacs itself creates. 272 waitpid only on subprocesses that Emacs itself creates.
266 * process.c (create_process, record_child_status_change): 273 * process.c (create_process, record_child_status_change):
267 Don't use special value -1 in pid field, as the caller now must 274 Don't use special value -1 in pid field, as the caller now must
268 know the pid rather than having the callee infer it. The 275 know the pid rather than having the callee infer it.
269 inference was sometimes incorrect anyway, due to another race. 276 The inference was sometimes incorrect anyway, due to another race.
270 (create_process): Set new 'alive' member if child is created. 277 (create_process): Set new 'alive' member if child is created.
271 (process_status_retrieved): New function. 278 (process_status_retrieved): New function.
272 (record_child_status_change): Use it. 279 (record_child_status_change): Use it.
@@ -427,8 +434,8 @@
427 434
4282012-10-29 Daniel Colascione <dancol@dancol.org> 4352012-10-29 Daniel Colascione <dancol@dancol.org>
429 436
430 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode): In 437 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
431 preparation for fixing bug#12739, move these functions from 438 In preparation for fixing bug#12739, move these functions from
432 here... 439 here...
433 440
434 * coding.h, coding.c: ... to here, and compile them only when 441 * coding.h, coding.c: ... to here, and compile them only when
diff --git a/src/xfaces.c b/src/xfaces.c
index 41c618612ac..eb19622435d 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -314,16 +314,10 @@ static Lisp_Object QCfontset;
314Lisp_Object Qnormal; 314Lisp_Object Qnormal;
315Lisp_Object Qbold; 315Lisp_Object Qbold;
316static Lisp_Object Qline, Qwave; 316static Lisp_Object Qline, Qwave;
317static Lisp_Object Qultra_light, Qreverse_oblique, Qreverse_italic;
318Lisp_Object Qextra_light, Qlight; 317Lisp_Object Qextra_light, Qlight;
319Lisp_Object Qsemi_light, Qsemi_bold, Qextra_bold, Qultra_bold; 318Lisp_Object Qsemi_light, Qsemi_bold, Qextra_bold, Qultra_bold;
320Lisp_Object Qoblique; 319Lisp_Object Qoblique;
321Lisp_Object Qitalic; 320Lisp_Object Qitalic;
322static Lisp_Object Qultra_condensed, Qextra_condensed;
323Lisp_Object Qcondensed;
324static Lisp_Object Qsemi_condensed, Qsemi_expanded, Qextra_expanded;
325Lisp_Object Qexpanded;
326static Lisp_Object Qultra_expanded;
327static Lisp_Object Qreleased_button, Qpressed_button; 321static Lisp_Object Qreleased_button, Qpressed_button;
328static Lisp_Object QCstyle, QCcolor, QCline_width; 322static Lisp_Object QCstyle, QCcolor, QCline_width;
329Lisp_Object Qunspecified; /* used in dosfns.c */ 323Lisp_Object Qunspecified; /* used in dosfns.c */
@@ -6451,7 +6445,6 @@ syms_of_xfaces (void)
6451 DEFSYM (Qreleased_button, "released-button"); 6445 DEFSYM (Qreleased_button, "released-button");
6452 DEFSYM (Qpressed_button, "pressed-button"); 6446 DEFSYM (Qpressed_button, "pressed-button");
6453 DEFSYM (Qnormal, "normal"); 6447 DEFSYM (Qnormal, "normal");
6454 DEFSYM (Qultra_light, "ultra-light");
6455 DEFSYM (Qextra_light, "extra-light"); 6448 DEFSYM (Qextra_light, "extra-light");
6456 DEFSYM (Qlight, "light"); 6449 DEFSYM (Qlight, "light");
6457 DEFSYM (Qsemi_light, "semi-light"); 6450 DEFSYM (Qsemi_light, "semi-light");
@@ -6461,16 +6454,6 @@ syms_of_xfaces (void)
6461 DEFSYM (Qultra_bold, "ultra-bold"); 6454 DEFSYM (Qultra_bold, "ultra-bold");
6462 DEFSYM (Qoblique, "oblique"); 6455 DEFSYM (Qoblique, "oblique");
6463 DEFSYM (Qitalic, "italic"); 6456 DEFSYM (Qitalic, "italic");
6464 DEFSYM (Qreverse_oblique, "reverse-oblique");
6465 DEFSYM (Qreverse_italic, "reverse-italic");
6466 DEFSYM (Qultra_condensed, "ultra-condensed");
6467 DEFSYM (Qextra_condensed, "extra-condensed");
6468 DEFSYM (Qcondensed, "condensed");
6469 DEFSYM (Qsemi_condensed, "semi-condensed");
6470 DEFSYM (Qsemi_expanded, "semi-expanded");
6471 DEFSYM (Qexpanded, "expanded");
6472 DEFSYM (Qextra_expanded, "extra-expanded");
6473 DEFSYM (Qultra_expanded, "ultra-expanded");
6474 DEFSYM (Qbackground_color, "background-color"); 6457 DEFSYM (Qbackground_color, "background-color");
6475 DEFSYM (Qforeground_color, "foreground-color"); 6458 DEFSYM (Qforeground_color, "foreground-color");
6476 DEFSYM (Qunspecified, "unspecified"); 6459 DEFSYM (Qunspecified, "unspecified");