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
f33ae5d0
Commit
f33ae5d0
authored
May 04, 2005
by
Richard M. Stallman
Browse files
(line-move-1): Fix previous change to signal errors appropriately.
parent
5648486c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
lisp/simple.el
lisp/simple.el
+7
-3
No files found.
lisp/simple.el
View file @
f33ae5d0
...
...
@@ -3420,7 +3420,9 @@ Outline mode sets this."
;; We avoid vertical-motion when possible
;; because that has to fontify.
(if (eobp)
(setq done t)
(if (not noerror)
(signal 'end-of-buffer nil)
(setq done t))
(forward-line 1))
;; Otherwise move a more sophisticated way.
;; (What's the logic behind this code?)
...
...
@@ -3434,9 +3436,11 @@ Outline mode sets this."
;; it just goes in the other direction.
(while (and (< arg 0) (not done))
(beginning-of-line)
(if (not (line-move-invisible-p (1- (point))))
(if
(or (bobp)
(not (line-move-invisible-p (1- (point))))
)
(if (bobp)
(setq done t)
(if (not noerror)
(signal 'beginning-of-buffer nil)
(setq done t))
(forward-line -1))
(if (zerop (vertical-motion -1))
(if (not noerror)
...
...
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