picture.el no longer required.

(lm-insert-at-column): Use FORCE arg of move-to-column.
This commit is contained in:
Karl Heuer 1997-10-23 06:40:32 +00:00
parent 113ab303b8
commit b4d73c7126

View file

@ -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)