summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2009-11-21 02:33:45 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2009-11-21 02:33:45 +0000
commitb0ca0f33f7a256b1d7791ff2598ed2272b34abb1 (patch)
tree098d5d5fdd9284170dde866e859f4d7612fa0830 /src
parente572025ff11352705a5145cf77cdf6227f36d4b4 (diff)
downloademacs-b0ca0f33f7a256b1d7791ff2598ed2272b34abb1.tar.gz
* xterm.c (x_new_font):
* print.c (print_object): * cmds.c (Fself_insert_command): Move declarations before statements.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/cmds.c2
-rw-r--r--src/print.c7
-rw-r--r--src/xterm.c8
4 files changed, 15 insertions, 8 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index acfffd39d7a..452cee484f2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
+2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
+
+ * xterm.c (x_new_font):
+ * print.c (print_object):
+ * cmds.c (Fself_insert_command): Move declarations before statements.
+
2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
* s/cygwin.h: Remove unneeded linker flags.
diff --git a/src/cmds.c b/src/cmds.c
index 69b967aa7e2..008fd6b82c2 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -330,8 +330,8 @@ After insertion, the value of `auto-fill-function' is called if the
(n)
Lisp_Object n;
{
- CHECK_NUMBER (n);
int remove_boundary = 1;
+ CHECK_NUMBER (n);
if (!EQ (Vthis_command, current_kboard->Vlast_command))
nonundocount = 0;
diff --git a/src/print.c b/src/print.c
index 24d497ed365..613660b582c 100644
--- a/src/print.c
+++ b/src/print.c
@@ -2034,6 +2034,7 @@ print_object (obj, printcharfun, escapeflag)
else if (HASH_TABLE_P (obj))
{
struct Lisp_Hash_Table *h = XHASH_TABLE (obj);
+ int i, real_size, size;
#if 0
strout ("#<hash-table", -1, -1, printcharfun, 0);
if (SYMBOLP (h->test))
@@ -2086,10 +2087,8 @@ print_object (obj, printcharfun, escapeflag)
strout (" data ", -1, -1, printcharfun, 0);
/* Print the data here as a plist. */
- int i;
-
- int real_size = HASH_TABLE_SIZE (h);
- int size = real_size;
+ real_size = HASH_TABLE_SIZE (h);
+ size = real_size;
/* Don't print more elements than the specified maximum. */
if (NATNUMP (Vprint_length)
diff --git a/src/xterm.c b/src/xterm.c
index 3349dc05b95..c4cf3de12fc 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -8054,7 +8054,9 @@ x_new_font (f, font_object, fontset)
problems because the tip frame has no widget. */
if (NILP (tip_frame) || XFRAME (tip_frame) != f)
{
- /* When the frame is maximized/fullscreen or running under for
+ int rows, cols;
+
+ /* When the frame is maximized/fullscreen or running under for
example Xmonad, x_set_window_size will be a no-op.
In that case, the right thing to do is extend rows/cols to
the current frame size. We do that first if x_set_window_size
@@ -8067,8 +8069,8 @@ x_new_font (f, font_object, fontset)
is however. */
pixelh -= FRAME_MENUBAR_HEIGHT (f);
#endif
- int rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, pixelh);
- int cols = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, FRAME_PIXEL_WIDTH (f));
+ rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, pixelh);
+ cols = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, FRAME_PIXEL_WIDTH (f));
change_frame_size (f, rows, cols, 0, 1, 0);
x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));