changeset 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 0e8886335c4b
children a5d0f051dd57
files lisp/emacs-lisp/lisp-mnt.el
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
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)