From b4d73c7126c0f43b5f132fa7777cc1a1e337c746 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 23 Oct 1997 06:40:32 +0000 Subject: [PATCH] picture.el no longer required. (lm-insert-at-column): Use FORCE arg of move-to-column. --- lisp/emacs-lisp/lisp-mnt.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/emacs-lisp/lisp-mnt.el b/lisp/emacs-lisp/lisp-mnt.el index 25ec9f62c4..31048372d2 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) -- 2.39.2