aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/finder.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7121f7a6a37..d902dd8624b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-07-11 Miles Bader <miles@gnu.org>
2
3 * finder.el (finder-insert-at-column): Also move to the next line
4 if exactly at COLUMN.
5
12001-07-10 Gerd Moellmann <gerd@gnu.org> 62001-07-10 Gerd Moellmann <gerd@gnu.org>
2 7
3 * help.el (describe-function-1): When printing FUNCTION's 8 * help.el (describe-function-1): When printing FUNCTION's
diff --git a/lisp/finder.el b/lisp/finder.el
index 73ff65f8fa9..a64e797a366 100644
--- a/lisp/finder.el
+++ b/lisp/finder.el
@@ -1,6 +1,6 @@
1;;; finder.el --- topic & keyword-based code finder 1;;; finder.el --- topic & keyword-based code finder
2 2
3;; Copyright (C) 1992, 1997, 1998, 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1992, 1997, 1998, 1999, 2001 Free Software Foundation, Inc.
4 4
5;; Author: Eric S. Raymond <esr@snark.thyrsus.com> 5;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
6;; Created: 16 Jun 1992 6;; Created: 16 Jun 1992
@@ -184,7 +184,7 @@ no arguments compiles from `load-path'."
184 184
185(defun finder-insert-at-column (column &rest strings) 185(defun finder-insert-at-column (column &rest strings)
186 "Insert, at column COLUMN, other args STRINGS." 186 "Insert, at column COLUMN, other args STRINGS."
187 (if (> (current-column) column) (insert "\n")) 187 (if (>= (current-column) column) (insert "\n"))
188 (move-to-column column t) 188 (move-to-column column t)
189 (apply 'insert strings)) 189 (apply 'insert strings))
190 190