Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d63b4018
Commit
d63b4018
authored
Feb 05, 2006
by
Ken Raeburn
Browse files
(Fconstrain_to_field): Fix int/Lisp_Object mixup.
parent
99155348
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/editfns.c
src/editfns.c
+2
-1
No files found.
src/ChangeLog
View file @
d63b4018
2006-02-05 Ken Raeburn <raeburn@raeburn.org>
* editfns.c (Fconstrain_to_field): Fix int/Lisp_Object mixup.
2006-02-03 Kim F. Storm <storm@cua.dk>
* xdisp.c: Cache last merged escape glyph face.
...
...
src/editfns.c
View file @
d63b4018
...
...
@@ -719,7 +719,8 @@ Field boundaries are not noticed if `inhibit-field-text-motion' is non-nil. */)
{
/* If non-zero, then the original point, before re-positioning. */
int
orig_point
=
0
;
int
fwd
,
prev_old
,
prev_new
;
int
fwd
;
Lisp_Object
prev_old
,
prev_new
;
if
(
NILP
(
new_pos
))
/* Use the current point, and afterwards, set it. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment