aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-03-08 22:07:27 -0800
committerPaul Eggert2011-03-08 22:07:27 -0800
commit426994c30418e7410bac86d9cd43e6fb20d91922 (patch)
treef86ccbb45db37bfa84dfa47d729825255e70193c /src
parentb024a9466a0e238e053d0464f4a4f9b19d04648b (diff)
downloademacs-426994c30418e7410bac86d9cd43e6fb20d91922.tar.gz
emacs-426994c30418e7410bac86d9cd43e6fb20d91922.zip
* terminal.c (store_terminal_param): Now static.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/terminal.c5
2 files changed, 5 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 89f4bbb3db9..f5d452a5dfb 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,4 +1,6 @@
12011-03-08 Paul Eggert <eggert@cs.ucla.edu> 12011-03-09 Paul Eggert <eggert@cs.ucla.edu>
2
3 * terminal.c (store_terminal_param): Now static.
2 4
3 * xmenu.c (menu_highlight_callback): Now static. 5 * xmenu.c (menu_highlight_callback): Now static.
4 (set_frame_menubar): Remove unused local. 6 (set_frame_menubar): Remove unused local.
diff --git a/src/terminal.c b/src/terminal.c
index 309cc0095e8..c5185601fb6 100644
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -109,7 +109,7 @@ void
109raw_cursor_to (struct frame *f, int row, int col) 109raw_cursor_to (struct frame *f, int row, int col)
110{ 110{
111 if (FRAME_TERMINAL (f)->raw_cursor_to_hook) 111 if (FRAME_TERMINAL (f)->raw_cursor_to_hook)
112 (*FRAME_TERMINAL (f)->raw_cursor_to_hook) (f, row, col); 112 (*FRAME_TERMINAL (f)->raw_cursor_to_hook) (f, row, col);
113} 113}
114 114
115/* Erase operations */ 115/* Erase operations */
@@ -444,7 +444,7 @@ selected frame's terminal). */)
444/* Set the value of terminal parameter PARAMETER in terminal D to VALUE. 444/* Set the value of terminal parameter PARAMETER in terminal D to VALUE.
445 Return the previous value. */ 445 Return the previous value. */
446 446
447Lisp_Object 447static Lisp_Object
448store_terminal_param (struct terminal *t, Lisp_Object parameter, Lisp_Object value) 448store_terminal_param (struct terminal *t, Lisp_Object parameter, Lisp_Object value)
449{ 449{
450 Lisp_Object old_alist_elt = Fassq (parameter, t->param_alist); 450 Lisp_Object old_alist_elt = Fassq (parameter, t->param_alist);
@@ -569,4 +569,3 @@ or some time later. */);
569 569
570 Fprovide (intern_c_string ("multi-tty"), Qnil); 570 Fprovide (intern_c_string ("multi-tty"), Qnil);
571} 571}
572