[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r107885: * src/indent.c (Fmove_to_col
From: |
Chong Yidong |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r107885: * src/indent.c (Fmove_to_column): Change interactive spec. |
Date: |
Fri, 13 Apr 2012 14:20:39 +0800 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 107885
author: Reuben Thomas <address@hidden>
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Fri 2012-04-13 14:20:39 +0800
message:
* src/indent.c (Fmove_to_column): Change interactive spec.
modified:
etc/NEWS
src/ChangeLog
src/indent.c
=== modified file 'etc/NEWS'
--- a/etc/NEWS 2012-04-12 23:47:13 +0000
+++ b/etc/NEWS 2012-04-13 06:20:39 +0000
@@ -37,6 +37,10 @@
* Editing Changes in Emacs 24.2
+
+** M-x move-to-column, if called interactively with no prefix arg, now
+prompts for a column number.
+
* Changes in Specialized Modes and Packages in Emacs 24.2
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog 2012-04-11 11:43:55 +0000
+++ b/src/ChangeLog 2012-04-13 06:20:39 +0000
@@ -1,3 +1,7 @@
+2012-04-13 Reuben Thomas <address@hidden>
+
+ * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
+
2012-04-11 Daniel Colascione <address@hidden>
* s/cygwin.h: The vfork the #define in cygwin.h was protecting
=== modified file 'src/indent.c'
--- a/src/indent.c 2012-04-09 13:05:48 +0000
+++ b/src/indent.c 2012-04-13 06:20:39 +0000
@@ -956,7 +956,8 @@
return val >= column;
}
-DEFUN ("move-to-column", Fmove_to_column, Smove_to_column, 1, 2, "p",
+DEFUN ("move-to-column", Fmove_to_column, Smove_to_column, 1, 2,
+ "NMove to column:",
doc: /* Move point to column COLUMN in the current line.
Interactively, COLUMN is the value of prefix numeric argument.
The column of a character is calculated by adding together the widths
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r107885: * src/indent.c (Fmove_to_column): Change interactive spec.,
Chong Yidong <=