diff options
| author | Paul Eggert | 2011-06-10 13:05:21 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-06-10 13:05:21 -0700 |
| commit | 4b66faf3de2606b613dea58dd41e2926b6df3f10 (patch) | |
| tree | dcdf9889c601e7bbcca1d666c6cc3922e94859b6 /src/window.c | |
| parent | f7e13da36c982977ccfe6de1e43d8f8b3bb59c8f (diff) | |
| download | emacs-4b66faf3de2606b613dea58dd41e2926b6df3f10.tar.gz emacs-4b66faf3de2606b613dea58dd41e2926b6df3f10.zip | |
Make identifiers static if they are not used in other modules.
* data.c (Qcompiled_function, Qframe, Qvector):
* image.c (QimageMagick, Qsvg):
* minibuf.c (Qmetadata):
* window.c (resize_window_check, resize_root_window): Now static.
* window.h (resize_window_check, resize_root_window): Remove decls.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c index 3e43d8386b6..7a026b3a1c7 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -82,6 +82,7 @@ static int foreach_window_1 (struct window *, | |||
| 82 | int (* fn) (struct window *, void *), | 82 | int (* fn) (struct window *, void *), |
| 83 | void *); | 83 | void *); |
| 84 | static Lisp_Object window_list_1 (Lisp_Object, Lisp_Object, Lisp_Object); | 84 | static Lisp_Object window_list_1 (Lisp_Object, Lisp_Object, Lisp_Object); |
| 85 | static int resize_window_check (struct window *, int); | ||
| 85 | static void resize_window_apply (struct window *, int); | 86 | static void resize_window_apply (struct window *, int); |
| 86 | static Lisp_Object select_window (Lisp_Object, Lisp_Object, int); | 87 | static Lisp_Object select_window (Lisp_Object, Lisp_Object, int); |
| 87 | 88 | ||
| @@ -2632,7 +2633,7 @@ selected frame and no others. */) | |||
| 2632 | return Qnil; | 2633 | return Qnil; |
| 2633 | } | 2634 | } |
| 2634 | 2635 | ||
| 2635 | Lisp_Object | 2636 | static Lisp_Object |
| 2636 | resize_root_window (Lisp_Object window, Lisp_Object delta, Lisp_Object horizontal, Lisp_Object ignore) | 2637 | resize_root_window (Lisp_Object window, Lisp_Object delta, Lisp_Object horizontal, Lisp_Object ignore) |
| 2637 | { | 2638 | { |
| 2638 | return call4 (Qresize_root_window, window, delta, horizontal, ignore); | 2639 | return call4 (Qresize_root_window, window, delta, horizontal, ignore); |
| @@ -3522,7 +3523,7 @@ Note: This function does not operate on any subwindows of WINDOW. */) | |||
| 3522 | Note: This function does not check any of `window-fixed-size-p', | 3523 | Note: This function does not check any of `window-fixed-size-p', |
| 3523 | `window-min-height' or `window-min-width'. It does check that window | 3524 | `window-min-height' or `window-min-width'. It does check that window |
| 3524 | sizes do not drop below one line (two columns). */ | 3525 | sizes do not drop below one line (two columns). */ |
| 3525 | int | 3526 | static int |
| 3526 | resize_window_check (struct window *w, int horflag) | 3527 | resize_window_check (struct window *w, int horflag) |
| 3527 | { | 3528 | { |
| 3528 | struct window *c; | 3529 | struct window *c; |