diff options
| author | Paul Eggert | 2014-08-01 08:12:01 -0700 |
|---|---|---|
| committer | Paul Eggert | 2014-08-01 08:12:01 -0700 |
| commit | 3ee7618cf19fc8334e8fccdcf2eff01786426a64 (patch) | |
| tree | 70d424b004d23990f8d82ef5e645d024cfbe19d9 /src/keyboard.c | |
| parent | f0316e9c5de6efb8b9b18721696d23722466aa62 (diff) | |
| download | emacs-3ee7618cf19fc8334e8fccdcf2eff01786426a64.tar.gz emacs-3ee7618cf19fc8334e8fccdcf2eff01786426a64.zip | |
Make functions static that no longer need to be extern.
* frame.c, frame.h (set_menu_bar_lines):
* keyboard.c (Qleftmost, Qrightmost):
* xfns.c, frame.h, menu.h (x_set_menu_bar_lines, x_set_tool_bar_lines)
(x_set_internal_border_width):
Now static.
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index a684f18c756..81b68ab343c 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -5164,7 +5164,8 @@ static const char *const lispy_drag_n_drop_names[] = | |||
| 5164 | static Lisp_Object Qabove_handle, Qhandle, Qbelow_handle; | 5164 | static Lisp_Object Qabove_handle, Qhandle, Qbelow_handle; |
| 5165 | static Lisp_Object Qbefore_handle, Qhorizontal_handle, Qafter_handle; | 5165 | static Lisp_Object Qbefore_handle, Qhorizontal_handle, Qafter_handle; |
| 5166 | Lisp_Object Qup, Qdown, Qtop, Qbottom; | 5166 | Lisp_Object Qup, Qdown, Qtop, Qbottom; |
| 5167 | Lisp_Object Qleft, Qright, Qleftmost, Qrightmost; | 5167 | Lisp_Object Qleft, Qright; |
| 5168 | static Lisp_Object Qleftmost, Qrightmost; | ||
| 5168 | static Lisp_Object Qend_scroll; | 5169 | static Lisp_Object Qend_scroll; |
| 5169 | static Lisp_Object Qratio; | 5170 | static Lisp_Object Qratio; |
| 5170 | 5171 | ||