home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / alt / lucidem / bug / 454 < prev    next >
Encoding:
Text File  |  1993-01-12  |  17.5 KB  |  486 lines

  1. x-gateway: rodan.UU.NET from bug-lucid-emacs to alt.lucid-emacs.bug; Tue, 12 Jan 1993 06:43:34 EST
  2. Date: Tue, 12 Jan 1993 11:40:52 GMT
  3. From: djh@CIS.Prime.COM (David Hughes)
  4. Message-ID: <9301121140.AA07876@CIS.Prime.COM>
  5. Subject: Re: Solution to buff-menu.el bug
  6. Newsgroups: alt.lucid-emacs.bug
  7. Path: sparky!uunet!wendy-fate.uu.net!bug-lucid-emacs
  8. Sender: bug-lucid-emacs-request@lucid.com
  9. Lines: 475
  10.  
  11. Eek, 'cl rears its head again... I also used 'setnth' which is defined in
  12. cl.el. This is here replaced with the longer (setcar (nthcdr ...
  13.  
  14. --
  15. Regards, David
  16.  
  17. 8< ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CUT HERE for file: buff-menu.el
  18. ;; Buffer menu main function and support functions.
  19. ;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
  20.  
  21. ;; This file is part of GNU Emacs.
  22.  
  23. ;; GNU Emacs is free software; you can redistribute it and/or modify
  24. ;; it under the terms of the GNU General Public License as published by
  25. ;; the Free Software Foundation; either version 2, or (at your option)
  26. ;; any later version.
  27.  
  28. ;; GNU Emacs is distributed in the hope that it will be useful,
  29. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  30. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  31. ;; GNU General Public License for more details.
  32.  
  33. ;; You should have received a copy of the GNU General Public License
  34. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  35. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  36.  
  37. ; Put buffer *Buffer List* into proper mode right away
  38. ; so that from now on even list-buffers is enough to get a buffer menu.
  39.  
  40. (defvar Buffer-menu-mode-map nil "")
  41.  
  42. (if Buffer-menu-mode-map
  43.     ()
  44.   (setq Buffer-menu-mode-map (make-keymap))
  45.   (suppress-keymap Buffer-menu-mode-map t)
  46.   (define-key Buffer-menu-mode-map "q" 'Buffer-menu-select)
  47.   (define-key Buffer-menu-mode-map "2" 'Buffer-menu-2-window)
  48.   (define-key Buffer-menu-mode-map "1" 'Buffer-menu-1-window)
  49.   (define-key Buffer-menu-mode-map "f" 'Buffer-menu-this-window)
  50.   (define-key Buffer-menu-mode-map "o" 'Buffer-menu-other-window)
  51.   (define-key Buffer-menu-mode-map "s" 'Buffer-menu-save)
  52.   (define-key Buffer-menu-mode-map "d" 'Buffer-menu-delete)
  53.   (define-key Buffer-menu-mode-map "k" 'Buffer-menu-delete)
  54.   (define-key Buffer-menu-mode-map "\C-d" 'Buffer-menu-delete-backwards)
  55.   (define-key Buffer-menu-mode-map "\C-k" 'Buffer-menu-delete)
  56.   (define-key Buffer-menu-mode-map "x" 'Buffer-menu-execute)
  57.   (define-key Buffer-menu-mode-map " " 'next-line)
  58.   (define-key Buffer-menu-mode-map "\177" 'Buffer-menu-backup-unmark)
  59.   (define-key Buffer-menu-mode-map "~" 'Buffer-menu-not-modified)
  60.   (define-key Buffer-menu-mode-map "?" 'describe-mode)
  61.   (define-key Buffer-menu-mode-map "u" 'Buffer-menu-unmark)
  62.   (define-key Buffer-menu-mode-map "m" 'Buffer-menu-mark)
  63.   (define-key Buffer-menu-mode-map "t" 'Buffer-menu-visit-tags-table)
  64.   (define-key Buffer-menu-mode-map 'button2 'Buffer-menu-mouse-select)
  65.   (define-key Buffer-menu-mode-map 'button3 'Buffer-menu-popup-menu)
  66.   )
  67.  
  68. ;; Buffer Menu mode is suitable only for specially formatted data.
  69. (put 'Buffer-menu-mode 'mode-class 'special)
  70.  
  71. (defun Buffer-menu-mode ()
  72.   "Major mode for editing a list of buffers.
  73. Each line describes one of the buffers in Emacs.
  74. Letters do not insert themselves; instead, they are commands.
  75. m -- mark buffer to be displayed.
  76. q -- select buffer of line point is on.
  77.   Also show buffers marked with m in other windows.
  78. 1 -- select that buffer in full-screen window.
  79. 2 -- select that buffer in one window,
  80.   together with buffer selected before this one in another window.
  81. f -- select that buffer in place of the buffer menu buffer.
  82. o -- select that buffer in another window,
  83.   so the buffer menu buffer remains visible in its window.
  84. t -- visit-tags-table this buffer.
  85. ~ -- clear modified-flag on that buffer.
  86. s -- mark that buffer to be saved, and move down.
  87. d or k -- mark that buffer to be deleted, and move down.
  88. C-d -- mark that buffer to be deleted, and move up.
  89. x -- delete or save marked buffers.
  90. u -- remove all kinds of marks from current line.
  91. Delete -- back up a line and remove marks.
  92.  
  93. Precisely,\\{Buffer-menu-mode-map}"
  94.   (kill-all-local-variables)
  95.   (use-local-map Buffer-menu-mode-map)
  96.   (setq truncate-lines t)
  97.   (setq buffer-read-only t)
  98.   (setq major-mode 'Buffer-menu-mode)
  99.   (setq mode-name "Buffer Menu")
  100.   (require 'mode-motion)
  101.   (setq mode-motion-hook 'mode-motion-highlight-line)
  102.   (run-hooks 'buffer-menu-mode-hook))
  103.  
  104. (defvar Buffer-menu-buffer-column 4)
  105.  
  106. ;; from mly@ai.mit.edu (Richard Mlynarik)
  107. (defun Buffer-menu-buffer (error-if-non-existent-p)
  108.   "Return buffer described by this line of buffer menu."
  109.   (save-excursion
  110.     (beginning-of-line)
  111.     (forward-char Buffer-menu-buffer-column)
  112.     (let* ((start (point))
  113.            (string (if (/= (preceding-char) ?\")
  114.                        ;; End of buffer name marked by tab or a space.
  115.                        (progn (re-search-forward "\t\\| ")
  116.                               (skip-chars-backward " \t")
  117.                               (buffer-substring start (point)))
  118.                        (progn
  119.                          (backward-char 1)
  120.                          (read (current-buffer))))))
  121.       (or (get-buffer string)
  122.       (if error-if-non-existent-p
  123.           (error "No buffer named \"%s\"" string)
  124.         nil)))))
  125.  
  126. (defvar list-buffers-buffer-width 19
  127.   "*Default width allowed for displaying buffer name in buffer menu")
  128.  
  129. (defun list-buffers-header-line ()
  130.   (let ((blank (substring "                                                              "
  131.                           0 (- list-buffers-buffer-width 7))))
  132.     (concat " MR Buffer" blank "Size  Mode         File\n"
  133.             " -- ------" blank "----  ----         ----\n")))
  134.  
  135. (defvar list-buffers-identification 'default-list-buffers-identification
  136.   "String used to identify this buffer, or a function of one argument
  137. to generate such a string.  This variable is always buffer-local.")
  138. (make-variable-buffer-local 'list-buffers-identification)
  139.  
  140. (defun goto-column (column)
  141.   "Move to column COLUMN in current line.
  142. Differs from move-to-column in that it creates or modifies whitespace
  143. if necessary to attain exactly the specified column."
  144.   (interactive "NGoto column: ")
  145.   (move-to-column column)
  146.   (let ((col (current-column)))
  147.     (if (< col column)
  148.         (indent-to column)
  149.       (if (and (/= col column)
  150.                (= (preceding-char) ?\t))
  151.           (let (indent-tabs-mode)
  152.             (delete-char -1)
  153.             (indent-to col)
  154.             (move-to-column column))))))
  155.  
  156. (defun default-list-buffers-identification (output)
  157.   (save-excursion
  158.     (let ((file (or (buffer-file-name (current-buffer))
  159.                     (and (boundp 'list-buffers-directory)
  160.                          list-buffers-directory)))
  161.           (size (buffer-size))
  162.           (mode mode-name)
  163.           p s)
  164.       (set-buffer output)
  165.       (prin1 size)
  166.       (setq p (point))
  167.       ;; right-justify the size
  168.       (goto-column (1+ list-buffers-buffer-width))
  169.       (setq s (- 6 (- p (point))))
  170.       (while (> s 0) ; speed/consing tradeoff...
  171.         (insert ? )
  172.         (setq s (1- s)))
  173.       (end-of-line)
  174.       (indent-to (+ 9 list-buffers-buffer-width) 1)
  175.       (insert mode)
  176.       (if (not file)
  177.           nil
  178.         ;; if the mode-name is really long, clip it for the filename
  179.         (if (> 0 (setq s (- (+ 21 list-buffers-buffer-width) (current-column))))
  180.             (delete-char s))
  181.         (indent-to (+ 22 list-buffers-buffer-width) 1)
  182.         (insert file)))))
  183.  
  184. (defun list-buffers (&optional files-only no-check)
  185.   "Display a list of names of existing buffers.
  186. Inserts it in buffer *Buffer List* and displays that.
  187. Note that buffers with names starting with spaces are omitted.
  188. Non-null optional arg FILES-ONLY means mention only file buffers.
  189. If NO-CHECK is non-nil, then list-buffers does not reset itself
  190. if the maximum buffername length is found to be greater than
  191. the variable list-buffers-buffer-width.
  192.  
  193. The M column contains a * for buffers that are modified.
  194. The R column contains a % for buffers that are read-only."
  195.   (interactive "P")
  196.   (let* (tmpbuf
  197.          (tmpbuflist (if (not no-check) (buffer-list)))
  198.          (elt (if (not no-check) (length tmpbuflist))))
  199.     (if (not no-check)
  200.       (while (> elt 0)
  201.         (setq elt (1- elt)
  202.               tmpbuf (nth elt tmpbuflist))
  203.         (setcar (nthcdr elt tmpbuflist)
  204.                 (if (or (buffer-file-name tmpbuf) (null files-only))
  205.                     (length (buffer-name tmpbuf))
  206.                   0))))
  207.     (let* ((current (current-buffer))
  208.            (list-buffers-buffer-width (if no-check
  209.                                           list-buffers-buffer-width
  210.                                         (max list-buffers-buffer-width (+ 3 (apply 'max tmpbuflist)))))
  211.            (col1 (1+ list-buffers-buffer-width))
  212.            output)
  213.       (save-excursion
  214.         (with-output-to-temp-buffer "*Buffer List*"
  215.           (let ((buffers (buffer-list)))
  216.             (setq output standard-output)
  217.             (set-buffer output)
  218.             (Buffer-menu-mode)
  219.             (setq buffer-read-only nil)
  220.             (buffer-flush-undo output)
  221.             (insert (list-buffers-header-line))
  222.             (while buffers
  223.               (let* ((buffer (car buffers))
  224.                      (name (buffer-name buffer))
  225.                      (file (buffer-file-name buffer)))
  226.                 (setq buffers (cdr buffers))
  227.                 (cond ((null name)) ;deleted buffer
  228.                       ((and (/= 0 (length name));don't mention if starts with " "
  229.                             (= (aref name 0) ?\ )))
  230.                       ((and files-only (null file)))
  231.                       (t
  232.                        (set-buffer buffer)
  233.                        (let ((ro buffer-read-only)
  234.                              (id list-buffers-identification))
  235.                          (set-buffer output)
  236.                          (insert (if (eq buffer current)
  237.                                      (progn (setq current (point)) ?\.)
  238.                                    ?\ ))
  239.                          (insert (if (buffer-modified-p buffer)
  240.                                      ?\*
  241.                                    ?\ ))
  242.                          (insert (if ro
  243.                                      ?\%
  244.                                    ?\ ))
  245.                          (if (string-match "[\n\"\\ \t]" name)
  246.                              (let ((print-escape-newlines t))
  247.                                (prin1 name output))
  248.                            (insert ?\  name))
  249.                          (indent-to col1 1)
  250.                          (cond ((stringp id)
  251.                                 (insert id))
  252.                                (id
  253.                                 (set-buffer buffer)
  254.                                 (condition-case e
  255.                                     (funcall id output)
  256.                                   (error
  257.                                    (princ "***" output) (prin1 e output)))
  258.                                 (set-buffer output)
  259.                                 (goto-char (point-max)))))
  260.                        (insert ?\n)))))
  261.             (setq buffer-read-only t))))
  262.       (if (not (bufferp current))
  263.           (save-excursion
  264.             (set-buffer output)
  265.             (goto-char current))))))
  266.  
  267. (defun buffer-menu (arg)
  268.   "Make a menu of buffers so you can save, delete or select them.
  269. With argument, show only buffers that are visiting files.
  270. Type ? after invocation to get help on commands available.
  271. Type q immediately to make the buffer menu go away."
  272.   (interactive "P")
  273.   (list-buffers arg)
  274.   (pop-to-buffer "*Buffer List*")
  275.   (forward-line 2)
  276.   (message
  277.    "Commands: d, s, x; 1, 2, m, u, q; delete; ~;  ? for help."))
  278.  
  279. (defun Buffer-menu-mark ()
  280.   "Mark buffer on this line for being displayed by \\[Buffer-menu-select] command."
  281.   (interactive)
  282.   (beginning-of-line)
  283.   (if (looking-at " [-M]")
  284.       (ding)
  285.     (let ((buffer-read-only nil))
  286.       (delete-char 1)
  287.       (insert ?>)
  288.       (forward-line 1))))
  289.  
  290. (defun Buffer-menu-unmark ()
  291.   "Cancel all requested operations on buffer on this line."
  292.   (interactive)
  293.   (beginning-of-line)
  294.   (if (looking-at " [-M]")
  295.       (ding)
  296.     (let* ((buf (Buffer-menu-buffer t))
  297.        (mod (buffer-modified-p buf))
  298.        (readonly (save-excursion (set-buffer buf) buffer-read-only))
  299.        (buffer-read-only nil))
  300.       (delete-char 3)
  301.       (insert (if readonly (if mod " *%" "  %") (if mod " * " "   ")))))
  302.   (forward-line 1))
  303.  
  304. (defun Buffer-menu-backup-unmark ()
  305.   "Move up and cancel all requested operations on buffer on line above."
  306.   (interactive)
  307.   (forward-line -1)
  308.   (Buffer-menu-unmark)
  309.   (forward-line -1))
  310.  
  311. (defun Buffer-menu-delete ()
  312.   "Mark buffer on this line to be deleted by \\[Buffer-menu-execute] command."
  313.   (interactive)
  314.   (beginning-of-line)
  315.   (if (looking-at " [-M]")        ;header lines
  316.       (ding)
  317.     (let ((buffer-read-only nil))
  318.       (delete-char 1)
  319.       (insert ?D)
  320.       (forward-line 1))))
  321.  
  322. (defun Buffer-menu-delete-backwards ()
  323.   "Mark buffer on this line to be deleted by \\[Buffer-menu-execute] command
  324. and then move up one line"
  325.   (interactive)
  326.   (Buffer-menu-delete)
  327.   (forward-line -2)
  328.   (if (looking-at " [-M]") (forward-line 1)))
  329.  
  330. (defun Buffer-menu-save ()
  331.   "Mark buffer on this line to be saved by \\[Buffer-menu-execute] command."
  332.   (interactive)
  333.   (beginning-of-line)
  334.   (forward-char 1)
  335.   (if (looking-at " [-M]")        ;header lines
  336.       (ding)
  337.     (let ((buffer-read-only nil))
  338.       (delete-char 1)
  339.       (insert ?S)
  340.       (forward-line 1))))
  341.  
  342. (defun Buffer-menu-not-modified ()
  343.   "Mark buffer on this line as unmodified (no changes to save)."
  344.   (interactive)
  345.   (save-excursion
  346.     (set-buffer (Buffer-menu-buffer t))
  347.     (set-buffer-modified-p nil))
  348.   (save-excursion
  349.    (beginning-of-line)
  350.    (forward-char 1)
  351.    (if (looking-at "\\*")
  352.        (let ((buffer-read-only nil))
  353.      (delete-char 1)
  354.      (insert ? )))))
  355.  
  356. (defun Buffer-menu-execute ()
  357.   "Save and/or delete buffers marked with \\[Buffer-menu-save] or \\[Buffer-menu-delete] commands."
  358.   (interactive)
  359.   (save-excursion
  360.     (goto-char (point-min))
  361.     (forward-line 1)
  362.     (while (re-search-forward "^.S" nil t)
  363.       (let ((modp nil))
  364.     (save-excursion
  365.       (set-buffer (Buffer-menu-buffer t))
  366.       (save-buffer)
  367.       (setq modp (buffer-modified-p)))
  368.     (let ((buffer-read-only nil))
  369.       (delete-char -1)
  370.       (insert (if modp ?* ? ))))))
  371.   (save-excursion
  372.     (goto-char (point-min))
  373.     (forward-line 1)
  374.     (let ((buff-menu-buffer (current-buffer))
  375.       (buffer-read-only nil))
  376.       (while (search-forward "\nD" nil t)
  377.     (forward-char -1)
  378.     (let ((buf (Buffer-menu-buffer nil)))
  379.       (or (eq buf nil)
  380.           (eq buf buff-menu-buffer)
  381.           (save-excursion (kill-buffer buf))))
  382.     (if (Buffer-menu-buffer nil)
  383.         (progn (delete-char 1)
  384.            (insert ? ))
  385.       (delete-region (point) (progn (forward-line 1) (point)))
  386.        (forward-char -1))))))
  387.  
  388. (defun Buffer-menu-select ()
  389.   "Select this line's buffer; also display buffers marked with \">\".
  390. You can mark buffers with the \\[Buffer-menu-mark] command."
  391.   (interactive)
  392.   (let ((buff (Buffer-menu-buffer t))
  393.     (menu (current-buffer))          
  394.     (others ())
  395.     tem)
  396.     (goto-char (point-min))
  397.     (while (search-forward "\n>" nil t)
  398.       (setq tem (Buffer-menu-buffer t))
  399.       (let ((buffer-read-only nil))
  400.     (delete-char -1)
  401.     (insert ?\ ))
  402.       (or (eq tem buff) (memq tem others) (setq others (cons tem others))))
  403.     (setq others (nreverse others)
  404.       tem (/ (1- (screen-height)) (1+ (length others))))
  405.     (delete-other-windows)
  406.     (switch-to-buffer buff)
  407.     (or (eq menu buff)
  408.     (bury-buffer menu))
  409.     (while others
  410.       (split-window nil tem)
  411.       (other-window 1)
  412.       (switch-to-buffer (car others))
  413.       (setq others (cdr others)))
  414.     (other-window 1)))            ;back to the beginning!
  415.  
  416. (defun Buffer-menu-visit-tags-table ()
  417.   "Visit the tags table in the buffer on this line.  See `visit-tags-table'."
  418.   (interactive)
  419.   (let ((file (buffer-file-name (Buffer-menu-buffer t))))
  420.     (if file
  421.     (visit-tags-table file)
  422.       (error "Specified buffer has no file"))))
  423.  
  424. (defun Buffer-menu-1-window ()
  425.   "Select this line's buffer, alone, in full screen."
  426.   (interactive)
  427.   (switch-to-buffer (Buffer-menu-buffer t))
  428.   (bury-buffer (other-buffer))
  429.   (delete-other-windows))
  430.  
  431. (defun Buffer-menu-this-window ()
  432.   "Select this line's buffer in this window."
  433.   (interactive)
  434.   (switch-to-buffer (Buffer-menu-buffer t)))
  435.  
  436. (defun Buffer-menu-other-window ()
  437.   "Select this line's buffer in other window, leaving buffer menu visible."
  438.   (interactive)
  439.   (switch-to-buffer-other-window (Buffer-menu-buffer t)))
  440.  
  441. (defun Buffer-menu-2-window ()
  442.   "Select this line's buffer, with previous buffer in second window."
  443.   (interactive)
  444.   (let ((buff (Buffer-menu-buffer t))
  445.     (menu (current-buffer))
  446.     (pop-up-windows t))
  447.     (switch-to-buffer (other-buffer))
  448.     (pop-to-buffer buff)
  449.     (bury-buffer menu)))
  450.  
  451.  
  452. ;;; mouseability
  453.  
  454. (defun Buffer-menu-mouse-select (event)
  455.   (interactive "e")
  456.   (mouse-set-point event)
  457.   (Buffer-menu-select))
  458.  
  459. (defvar Buffer-menu-popup-menu
  460.   '("Buffer Commands"
  461.     ["Select Buffer"            Buffer-menu-select        t]
  462.     ["Select buffer Other Window"    Buffer-menu-other-window    t]
  463.     ["Clear Buffer Modification Flag"    Buffer-menu-not-modified    t]
  464.     "----"
  465.     ["Mark Buffer for Selection"    Buffer-menu-mark        t]
  466.     ["Mark Buffer for Save"        Buffer-menu-save        t]
  467.     ["Mark Buffer for Deletion"        Buffer-menu-delete        t]
  468.     ["Unmark Buffer"            Buffer-menu-unmark        t]
  469.     "----"
  470.     ["Delete/Save Marked Buffers"    Buffer-menu-execute        t]
  471.     ))
  472.  
  473. (defun Buffer-menu-popup-menu (event)
  474.   (interactive "e")
  475.   (mouse-set-point event)
  476.   (beginning-of-line)
  477.   (let ((buffer (Buffer-menu-buffer nil)))
  478.     (if buffer
  479.     (popup-menu
  480.      (nconc (list (car Buffer-menu-popup-menu)
  481.               (concat
  482.                "Commands on buffer \"" (buffer-name buffer) "\":")
  483.               "----")
  484.         (cdr Buffer-menu-popup-menu)))
  485.       (error "no buffer on this line"))))
  486.