diff options
| author | Reuben Thomas | 2012-04-13 14:20:39 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-04-13 14:20:39 +0800 |
| commit | c25df26eff9490f6c8b0ffc22d3d6f8c2043fff7 (patch) | |
| tree | 1faf4468d2a3f8cac47381b5b906322959121cec /src | |
| parent | 8712423321df220fd344f56a937fa29ff2273cf2 (diff) | |
| download | emacs-c25df26eff9490f6c8b0ffc22d3d6f8c2043fff7.tar.gz emacs-c25df26eff9490f6c8b0ffc22d3d6f8c2043fff7.zip | |
* src/indent.c (Fmove_to_column): Change interactive spec.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/indent.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a55189fb3c3..63cb7a23da4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-04-13 Reuben Thomas <rrt@sc3d.org> | ||
| 2 | |||
| 3 | * indent.c (Fmove_to_column): Change interactive spec (Bug#739). | ||
| 4 | |||
| 1 | 2012-04-11 Daniel Colascione <dancol@dancol.org> | 5 | 2012-04-11 Daniel Colascione <dancol@dancol.org> |
| 2 | 6 | ||
| 3 | * s/cygwin.h: The vfork the #define in cygwin.h was protecting | 7 | * s/cygwin.h: The vfork the #define in cygwin.h was protecting |
diff --git a/src/indent.c b/src/indent.c index 1531d2ffde8..e9f86c95a9d 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -956,7 +956,8 @@ indented_beyond_p (EMACS_INT pos, EMACS_INT pos_byte, EMACS_INT column) | |||
| 956 | return val >= column; | 956 | return val >= column; |
| 957 | } | 957 | } |
| 958 | 958 | ||
| 959 | DEFUN ("move-to-column", Fmove_to_column, Smove_to_column, 1, 2, "p", | 959 | DEFUN ("move-to-column", Fmove_to_column, Smove_to_column, 1, 2, |
| 960 | "NMove to column:", | ||
| 960 | doc: /* Move point to column COLUMN in the current line. | 961 | doc: /* Move point to column COLUMN in the current line. |
| 961 | Interactively, COLUMN is the value of prefix numeric argument. | 962 | Interactively, COLUMN is the value of prefix numeric argument. |
| 962 | The column of a character is calculated by adding together the widths | 963 | The column of a character is calculated by adding together the widths |