aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorPaul Eggert2014-08-01 08:12:01 -0700
committerPaul Eggert2014-08-01 08:12:01 -0700
commit3ee7618cf19fc8334e8fccdcf2eff01786426a64 (patch)
tree70d424b004d23990f8d82ef5e645d024cfbe19d9 /src/keyboard.c
parentf0316e9c5de6efb8b9b18721696d23722466aa62 (diff)
downloademacs-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.c3
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[] =
5164static Lisp_Object Qabove_handle, Qhandle, Qbelow_handle; 5164static Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
5165static Lisp_Object Qbefore_handle, Qhorizontal_handle, Qafter_handle; 5165static Lisp_Object Qbefore_handle, Qhorizontal_handle, Qafter_handle;
5166Lisp_Object Qup, Qdown, Qtop, Qbottom; 5166Lisp_Object Qup, Qdown, Qtop, Qbottom;
5167Lisp_Object Qleft, Qright, Qleftmost, Qrightmost; 5167Lisp_Object Qleft, Qright;
5168static Lisp_Object Qleftmost, Qrightmost;
5168static Lisp_Object Qend_scroll; 5169static Lisp_Object Qend_scroll;
5169static Lisp_Object Qratio; 5170static Lisp_Object Qratio;
5170 5171