diff lisp/emacs-lisp/lisp-mnt.el @ 20127:75c24766a23a

picture.el no longer required. (lm-insert-at-column): Use FORCE arg of move-to-column.
author Karl Heuer <kwzh@gnu.org>
date Thu, 23 Oct 1997 06:40:32 +0000
parents c3b46f285d54
children 8a5bdbbc1d6a
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp-mnt.el	Thu Oct 23 06:36:33 1997 +0000
+++ b/lisp/emacs-lisp/lisp-mnt.el	Thu Oct 23 06:40:32 1997 +0000
@@ -113,7 +113,6 @@
 
 ;;; Code:
 
-(require 'picture)		; provides move-to-column-force
 (require 'emacsbug)
 
 ;;; Variables:
@@ -404,7 +403,7 @@
 (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)