diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-10-23 06:40:32 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-10-23 06:40:32 +0000 |
commit | b4d73c7126c0f43b5f132fa7777cc1a1e337c746 (patch) | |
tree | a6bfaa5e17d327c82d2686c08583fca7aa69569c /lisp/emacs-lisp/lisp-mnt.el | |
parent | 113ab303b87e5c4edfd5583532aa41c134356c50 (diff) | |
download | emacs-b4d73c7126c0f43b5f132fa7777cc1a1e337c746.tar.gz emacs-b4d73c7126c0f43b5f132fa7777cc1a1e337c746.tar.bz2 emacs-b4d73c7126c0f43b5f132fa7777cc1a1e337c746.zip |
picture.el no longer required.
(lm-insert-at-column): Use FORCE arg of move-to-column.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mnt.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mnt.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lisp-mnt.el b/lisp/emacs-lisp/lisp-mnt.el index 25ec9f62c4e..31048372d24 100644 --- a/lisp/emacs-lisp/lisp-mnt.el +++ b/lisp/emacs-lisp/lisp-mnt.el @@ -113,7 +113,6 @@ ;;; Code: -(require 'picture) ; provides move-to-column-force (require 'emacsbug) ;;; Variables: @@ -404,7 +403,7 @@ with tag `Commentary' and ends with tag `Change Log' or `History'." (defun lm-insert-at-column (col &rest strings) "Insert list of STRINGS, at column COL." (if (> (current-column) col) (insert "\n")) - (move-to-column-force col) + (move-to-column col t) (apply 'insert strings)) (defun lm-verify (&optional file showok &optional verb) |