+2001-07-11 Miles Bader <miles@gnu.org>
+
+ * finder.el (finder-insert-at-column): Also move to the next line
+ if exactly at COLUMN.
+
2001-07-10 Gerd Moellmann <gerd@gnu.org>
* help.el (describe-function-1): When printing FUNCTION's
;;; finder.el --- topic & keyword-based code finder
-;; Copyright (C) 1992, 1997, 1998, 1999 Free Software Foundation, Inc.
+;; Copyright (C) 1992, 1997, 1998, 1999, 2001 Free Software Foundation, Inc.
;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
;; Created: 16 Jun 1992
(defun finder-insert-at-column (column &rest strings)
"Insert, at column COLUMN, other args STRINGS."
- (if (> (current-column) column) (insert "\n"))
+ (if (>= (current-column) column) (insert "\n"))
(move-to-column column t)
(apply 'insert strings))