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
7510b021
Commit
7510b021
authored
Dec 23, 2013
by
Chong Yidong
Browse files
* indent.el (indent-rigidly): Use substitute-command-keys.
parent
8cd22a08
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
lisp/ChangeLog
lisp/ChangeLog
+2
-0
lisp/indent.el
lisp/indent.el
+3
-2
No files found.
lisp/ChangeLog
View file @
7510b021
...
...
@@ -12,6 +12,8 @@
* calendar/todo-mode.el (todo-insert-item--next-param):
* progmodes/f90.el (f90-abbrev-start): Callers changed.
* indent.el (indent-rigidly): Use substitute-command-keys.
2013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
* net/eww.el (eww-tag-select): Add text-property to jump to next
...
...
lisp/indent.el
View file @
7510b021
...
...
@@ -194,8 +194,9 @@ indentation by specifying a large negative ARG."
(
interactive
"r\nP\np"
)
(
if
(
and
(
not
arg
)
interactive
)
(
progn
(
message
"
Edit
region
indentation
with
<left>,
<right>,
<S-left>
\
and
<S-right>.
")
(
message
(
substitute-command-keys
"Indent region with \\<indent-rigidly-map>\\[indent-rigidly-left], \\[indent-rigidly-right], \\[indent-rigidly-left-to-tab-stop], or \\[indent-rigidly-right-to-tab-stop]."
))
(
set-transient-map
indent-rigidly-map
t
))
(
save-excursion
(
goto-char
end
)
...
...
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