diff options
| author | Dmitry Antipov | 2014-06-29 20:12:08 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2014-06-29 20:12:08 +0400 |
| commit | 8d56de79017652907c97aa00ba0d8155229b496b (patch) | |
| tree | a72a48da445bc65ee8419738629f42df32d83dcf | |
| parent | e3be29073e79a306ccdbdbdb8d4caf2863de760e (diff) | |
| download | emacs-8d56de79017652907c97aa00ba0d8155229b496b.tar.gz emacs-8d56de79017652907c97aa00ba0d8155229b496b.zip | |
* xfns.c (Qsuppress_icon): Remove; no real users.
(syms_of_xfns): Don't DEFSYM it. Remove ancient comments.
* w32fns.c (Qsuppress_icon): Remove, for the same reason.
(syms_of_w32fns): Don't DEFSYM it.
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/w32fns.c | 4 | ||||
| -rw-r--r-- | src/xfns.c | 6 |
3 files changed, 7 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 323205e8d1d..4a6b6a4769c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2014-06-29 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 2 | |||
| 3 | * xfns.c (Qsuppress_icon): Remove; no real users. | ||
| 4 | (syms_of_xfns): Don't DEFSYM it. Remove ancient comments. | ||
| 5 | * w32fns.c (Qsuppress_icon): Remove, for the same reason. | ||
| 6 | (syms_of_w32fns): Don't DEFSYM it. | ||
| 7 | |||
| 1 | 2014-06-29 Glenn Morris <rgm@gnu.org> | 8 | 2014-06-29 Glenn Morris <rgm@gnu.org> |
| 2 | 9 | ||
| 3 | * Makefile.in (ns-app): Mark as PHONY. | 10 | * Makefile.in (ns-app): Mark as PHONY. |
diff --git a/src/w32fns.c b/src/w32fns.c index 057bc95ee94..e24148af4ff 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -96,7 +96,6 @@ static HWND hourglass_hwnd = NULL; | |||
| 96 | #define IDC_HAND MAKEINTRESOURCE(32649) | 96 | #define IDC_HAND MAKEINTRESOURCE(32649) |
| 97 | #endif | 97 | #endif |
| 98 | 98 | ||
| 99 | Lisp_Object Qsuppress_icon; | ||
| 100 | Lisp_Object Qundefined_color; | 99 | Lisp_Object Qundefined_color; |
| 101 | Lisp_Object Qcancel_timer; | 100 | Lisp_Object Qcancel_timer; |
| 102 | Lisp_Object Qfont_param; | 101 | Lisp_Object Qfont_param; |
| @@ -8091,7 +8090,6 @@ syms_of_w32fns (void) | |||
| 8091 | 8090 | ||
| 8092 | w32_visible_system_caret_hwnd = NULL; | 8091 | w32_visible_system_caret_hwnd = NULL; |
| 8093 | 8092 | ||
| 8094 | DEFSYM (Qsuppress_icon, "suppress-icon"); | ||
| 8095 | DEFSYM (Qundefined_color, "undefined-color"); | 8093 | DEFSYM (Qundefined_color, "undefined-color"); |
| 8096 | DEFSYM (Qcancel_timer, "cancel-timer"); | 8094 | DEFSYM (Qcancel_timer, "cancel-timer"); |
| 8097 | DEFSYM (Qhyper, "hyper"); | 8095 | DEFSYM (Qhyper, "hyper"); |
| @@ -8106,8 +8104,6 @@ syms_of_w32fns (void) | |||
| 8106 | DEFSYM (Qworkarea, "workarea"); | 8104 | DEFSYM (Qworkarea, "workarea"); |
| 8107 | DEFSYM (Qmm_size, "mm-size"); | 8105 | DEFSYM (Qmm_size, "mm-size"); |
| 8108 | DEFSYM (Qframes, "frames"); | 8106 | DEFSYM (Qframes, "frames"); |
| 8109 | /* This is the end of symbol initialization. */ | ||
| 8110 | |||
| 8111 | 8107 | ||
| 8112 | Fput (Qundefined_color, Qerror_conditions, | 8108 | Fput (Qundefined_color, Qerror_conditions, |
| 8113 | listn (CONSTYPE_PURE, 2, Qundefined_color, Qerror)); | 8109 | listn (CONSTYPE_PURE, 2, Qundefined_color, Qerror)); |
diff --git a/src/xfns.c b/src/xfns.c index c3d9900207f..651d21294e3 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -125,7 +125,6 @@ extern LWLIB_ID widget_id_tick; | |||
| 125 | 125 | ||
| 126 | #define MAXREQUEST(dpy) (XMaxRequestSize (dpy)) | 126 | #define MAXREQUEST(dpy) (XMaxRequestSize (dpy)) |
| 127 | 127 | ||
| 128 | static Lisp_Object Qsuppress_icon; | ||
| 129 | static Lisp_Object Qundefined_color; | 128 | static Lisp_Object Qundefined_color; |
| 130 | static Lisp_Object Qcompound_text, Qcancel_timer; | 129 | static Lisp_Object Qcompound_text, Qcancel_timer; |
| 131 | Lisp_Object Qfont_param; | 130 | Lisp_Object Qfont_param; |
| @@ -6137,15 +6136,10 @@ frame_parm_handler x_frame_parm_handlers[] = | |||
| 6137 | void | 6136 | void |
| 6138 | syms_of_xfns (void) | 6137 | syms_of_xfns (void) |
| 6139 | { | 6138 | { |
| 6140 | /* The section below is built by the lisp expression at the top of the file, | ||
| 6141 | just above where these variables are declared. */ | ||
| 6142 | /*&&& init symbols here &&&*/ | ||
| 6143 | DEFSYM (Qsuppress_icon, "suppress-icon"); | ||
| 6144 | DEFSYM (Qundefined_color, "undefined-color"); | 6139 | DEFSYM (Qundefined_color, "undefined-color"); |
| 6145 | DEFSYM (Qcompound_text, "compound-text"); | 6140 | DEFSYM (Qcompound_text, "compound-text"); |
| 6146 | DEFSYM (Qcancel_timer, "cancel-timer"); | 6141 | DEFSYM (Qcancel_timer, "cancel-timer"); |
| 6147 | DEFSYM (Qfont_param, "font-parameter"); | 6142 | DEFSYM (Qfont_param, "font-parameter"); |
| 6148 | /* This is the end of symbol initialization. */ | ||
| 6149 | 6143 | ||
| 6150 | Fput (Qundefined_color, Qerror_conditions, | 6144 | Fput (Qundefined_color, Qerror_conditions, |
| 6151 | listn (CONSTYPE_PURE, 2, Qundefined_color, Qerror)); | 6145 | listn (CONSTYPE_PURE, 2, Qundefined_color, Qerror)); |