diff options
| author | Dan Nicolaescu | 2009-11-21 02:33:45 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-11-21 02:33:45 +0000 |
| commit | b0ca0f33f7a256b1d7791ff2598ed2272b34abb1 (patch) | |
| tree | 098d5d5fdd9284170dde866e859f4d7612fa0830 /src/cmds.c | |
| parent | e572025ff11352705a5145cf77cdf6227f36d4b4 (diff) | |
| download | emacs-b0ca0f33f7a256b1d7791ff2598ed2272b34abb1.tar.gz emacs-b0ca0f33f7a256b1d7791ff2598ed2272b34abb1.zip | |
* xterm.c (x_new_font):
* print.c (print_object):
* cmds.c (Fself_insert_command): Move declarations before statements.
Diffstat (limited to 'src/cmds.c')
| -rw-r--r-- | src/cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
| 330 | (n) | 330 | (n) |
| 331 | Lisp_Object n; | 331 | Lisp_Object n; |
| 332 | { | 332 | { |
| 333 | CHECK_NUMBER (n); | ||
| 334 | int remove_boundary = 1; | 333 | int remove_boundary = 1; |
| 334 | CHECK_NUMBER (n); | ||
| 335 | 335 | ||
| 336 | if (!EQ (Vthis_command, current_kboard->Vlast_command)) | 336 | if (!EQ (Vthis_command, current_kboard->Vlast_command)) |
| 337 | nonundocount = 0; | 337 | nonundocount = 0; |