diff options
| author | Richard M. Stallman | 1995-01-19 04:34:02 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-01-19 04:34:02 +0000 |
| commit | 3de15b7ad1643223f6a34d0d17b3ef31a4a50026 (patch) | |
| tree | 3e72b0bf27d888cbe1a18e13ebf37733b06d55ba /src | |
| parent | 9a04e20535e309d1d4b1fe31fddc772e58ec6501 (diff) | |
| download | emacs-3de15b7ad1643223f6a34d0d17b3ef31a4a50026.tar.gz emacs-3de15b7ad1643223f6a34d0d17b3ef31a4a50026.zip | |
(internal_self_insert): Don't test current_column
when deciding to call auto_fill_function.
Diffstat (limited to 'src')
| -rw-r--r-- | src/cmds.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cmds.c b/src/cmds.c index 34a4facbb6a..af3b08ae659 100644 --- a/src/cmds.c +++ b/src/cmds.c | |||
| @@ -355,8 +355,7 @@ internal_self_insert (c1, noautofill) | |||
| 355 | } | 355 | } |
| 356 | if ((c == ' ' || c == '\n') | 356 | if ((c == ' ' || c == '\n') |
| 357 | && !noautofill | 357 | && !noautofill |
| 358 | && !NILP (current_buffer->auto_fill_function) | 358 | && !NILP (current_buffer->auto_fill_function)) |
| 359 | && current_column () > XFASTINT (current_buffer->fill_column)) | ||
| 360 | { | 359 | { |
| 361 | if (c1 != '\n') | 360 | if (c1 != '\n') |
| 362 | insert_and_inherit (&c1, 1); | 361 | insert_and_inherit (&c1, 1); |