changeset 11215:896932ac8ced

(list-buffers-noselect): Put buffer name in a text property on the buffer's name. Put in mouse-face prop here too. Set Buffer-menu-buffer-column here. (Buffer-menu-mode): Don't do those things here. (Buffer-menu-buffer): Use text properties. (Buffer-menu-buffer-name-position): Function deleted.
author Richard M. Stallman <rms@gnu.org>
date Thu, 06 Apr 1995 08:00:00 +0000
parents b880572ce431
children 49b437fefafd
files lisp/buff-menu.el
diffstat 1 files changed, 26 insertions(+), 29 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/buff-menu.el	Thu Apr 06 06:58:50 1995 +0000
+++ b/lisp/buff-menu.el	Thu Apr 06 08:00:00 1995 +0000
@@ -127,16 +127,6 @@
   (use-local-map Buffer-menu-mode-map)
   (setq major-mode 'Buffer-menu-mode)
   (setq mode-name "Buffer Menu")
-  (save-excursion
-    (goto-char (point-min))
-    (search-forward "Buffer")
-    (backward-word 1)
-    (setq Buffer-menu-buffer-column (current-column))
-    (forward-line 2)
-    (while (not (eobp))
-      (let ((where (Buffer-menu-buffer-name-position)))
-	(put-text-property (car where) (cdr where) 'mouse-face 'highlight))
-      (forward-line 1)))
   (make-local-variable 'revert-buffer-function)
   (setq revert-buffer-function 'Buffer-menu-revert-function)
   (setq truncate-lines t)
@@ -148,24 +138,18 @@
 
 (defun Buffer-menu-buffer (error-if-non-existent-p)
   "Return buffer described by this line of buffer menu."
-  (let* ((where (Buffer-menu-buffer-name-position))
-	 (string (buffer-substring (car where) (cdr where))))
-    (set-text-properties 0 (length string) nil string)
-    (or (get-buffer string)
-	(if error-if-non-existent-p
-	    (error "No buffer named \"%s\"" string)
-	  nil))))
-
-;; Find the start and end positions of the buffer name on this line.
-;; Returns a cons (START . END).
-(defun Buffer-menu-buffer-name-position ()
-  (save-excursion
-    (beginning-of-line)
-    (forward-char Buffer-menu-buffer-column)
-    (let ((start (point)))
-      (re-search-forward "\t\\|  ")
-      (skip-chars-backward " \t")
-      (cons start (point)))))
+  (let* ((where (save-excursion
+		  (beginning-of-line)
+		  (+ (point) Buffer-menu-buffer-column)))
+	 (name (get-text-property where 'buffer-name)))
+    (if name
+	(or (get-buffer name)
+	    (if error-if-non-existent-p
+		(error "No buffer named `%s'" name)
+	      nil))
+      (if error-if-non-existent-p
+	  (error "No buffer on this line")
+	nil))))
 
 (defun buffer-menu (&optional arg)
   "Make a menu of buffers so you can save, delete or select them.
@@ -469,11 +453,14 @@
  MR Buffer           Size  Mode         File
  -- ------           ----  ----         ----
 ")
+      ;; Record the column where buffer names start.
+      (setq Buffer-menu-buffer-column 4)
       (let ((bl (buffer-list)))
 	(while bl
 	  (let* ((buffer (car bl))
 		 (name (buffer-name buffer))
 		 (file (buffer-file-name buffer))
+		 this-buffer-line-start
 		 this-buffer-read-only
 		 this-buffer-size
 		 this-buffer-mode-name
@@ -498,6 +485,7 @@
 	     ((and files-only (not file)))
 	     ;; Otherwise output info.
 	     (t
+	      (setq this-buffer-line-start (point))
 	      ;; Identify current buffer.
 	      (if (eq buffer old-buffer)
 		  (progn
@@ -507,13 +495,22 @@
 	      ;; Identify modified buffers.
 	      (princ (if (buffer-modified-p buffer) "*" " "))
 	      ;; Handle readonly status.  The output buffer is special
-	      ;; cased to be readonly; it is actually made so at a later
+	      ;; cased to appear readonly; it is actually made so at a later
 	      ;; date.
 	      (princ (if (or (eq buffer standard-output)
 			     this-buffer-read-only)
 			 "% "
 		       "  "))
 	      (princ name)
+	      ;; Put the buffer name into a text property
+	      ;; so we don't have to extract it from the text.
+	      ;; This way we avoid problems with unusual buffer names.
+	      (setq this-buffer-line-start
+		    (+ this-buffer-line-start Buffer-menu-buffer-column))
+	      (put-text-property this-buffer-line-start (point)
+				 'buffer-name name)
+	      (put-text-property this-buffer-line-start (point)
+				 'mouse-face 'highlight)
 	      (indent-to 17 2)
 	      (let (size
 		    mode