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
0565d307
Commit
0565d307
authored
Oct 08, 1996
by
Richard M. Stallman
Browse files
(line-move): Ignore invisibility in `move-to-column'.
(universal-argument): Doc fix.
parent
91c6fd0c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
lisp/simple.el
lisp/simple.el
+5
-2
No files found.
lisp/simple.el
View file @
0565d307
...
...
@@ -980,7 +980,9 @@ Digits or minus sign following \\[universal-argument] make up the numeric argume
\\[universal-argument]
following
the
digits
or
minus
sign
ends
the
argument.
\\[universal-argument]
without
digits
or
minus
sign
provides
4
as
argument.
Repeating
\\[universal-argument]
without
digits
or
minus
sign
multiplies
the
argument
by
4
each
time.
"
multiplies
the
argument
by
4
each
time.
For
some
commands,
just
\\[universal-argument]
by
itself
serves
as
a
flag
which
is
different
in
effect
from
any
particular
numeric
argument.
"
(interactive)
(setq prefix-arg (list 4))
(setq universal-argument-num-events (length (this-command-keys)))
...
...
@@ -1789,7 +1791,8 @@ Outline mode sets this.")
(goto-char (previous-single-property-change (point) 'invisible))
(goto-char (previous-overlay-change (point)))))
(setq arg (1+ arg))))
(move-to-column (or goal-column temporary-goal-column)))
(let ((buffer-invisibility-spec nil))
(move-to-column (or goal-column temporary-goal-column))))
;; Remember where we moved to, go back home,
;; then do the motion over again
;; in just one step, with intangibility and point-motion hooks
...
...
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