]> code.delx.au - gnu-emacs/commitdiff
picture.el no longer required.
authorKarl Heuer <kwzh@gnu.org>
Thu, 23 Oct 1997 06:40:32 +0000 (06:40 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 23 Oct 1997 06:40:32 +0000 (06:40 +0000)
(lm-insert-at-column): Use FORCE arg of move-to-column.

lisp/emacs-lisp/lisp-mnt.el

index 25ec9f62c4e099204bc6d06ec33b9fcd2895f2b9..31048372d2449c5f00815099c29be965c8a1ec91 100644 (file)
 
 ;;; 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)