mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
* term/w32-win.el (w32-drag-n-drop): Use mapc instead of mapcar.
* term/tvi970.el (terminal-init-tvi970): Likewise. * term/sun-mouse.el (print-mouse-format): Likewise. * term/sun.el (scroll-down-in-place, scroll-up-in-place): Use forward-line instead of previous-line and next-line.
This commit is contained in:
parent
f3de57e906
commit
f7ba2ff462
5 changed files with 16 additions and 5 deletions
|
|
@ -32,12 +32,12 @@
|
|||
|
||||
(defun scroll-down-in-place (n)
|
||||
(interactive "p")
|
||||
(previous-line n)
|
||||
(forward-line (- n))
|
||||
(scroll-down n))
|
||||
|
||||
(defun scroll-up-in-place (n)
|
||||
(interactive "p")
|
||||
(next-line n)
|
||||
(forward-line n)
|
||||
(scroll-up n))
|
||||
|
||||
(defun kill-region-and-unmark (beg end)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue