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
5632c006
Commit
5632c006
authored
Jun 21, 2002
by
Kim F. Storm
Browse files
Corrected last fix.
parent
2fe7c8dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
lisp/emulation/cua-base.el
lisp/emulation/cua-base.el
+7
-7
No files found.
lisp/emulation/cua-base.el
View file @
5632c006
...
...
@@ -656,13 +656,13 @@ Repeating prefix key when region is active works as a single prefix key."
(
integerp
arg
)
(
>=
arg
0
)
(
<
arg
10
)
(
let*
((
prefix
(
aref
(
this-command-keys
)
0
))
(
ctrl-u-prefix
(
and
(
integerp
prefix
)
(
=
prefix
?\C-u
))))
)
(
cond
((
eq
cua-enable-register-prefix
'not-ctrl-u
)
(
not
ctrl-u-prefix
))
((
eq
cua-enable-register-prefix
'ctrl-u-only
)
ctrl-u-prefix
)
(
t
t
))
(
=
prefix
?\C-u
))))
(
cond
((
eq
cua-enable-register-prefix
'not-ctrl-u
)
(
not
ctrl-u-prefix
))
((
eq
cua-enable-register-prefix
'ctrl-u-only
)
ctrl-u-prefix
)
(
t
t
))
)
(
+
arg
?0
)))
(
if
cua--register
nil
arg
))
...
...
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