emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/comint.el


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/comint.el
Date: Mon, 08 Jul 2002 04:45:00 -0400

Index: emacs/lisp/comint.el
diff -c emacs/lisp/comint.el:1.280 emacs/lisp/comint.el:1.281
*** emacs/lisp/comint.el:1.280  Thu Jul  4 02:44:34 2002
--- emacs/lisp/comint.el        Mon Jul  8 04:45:00 2002
***************
*** 2807,2812 ****
--- 2807,2813 ----
    "List in help buffer sorted COMPLETIONS.
  Typing SPC flushes the help buffer."
    (let ((window (get-buffer-window "*Completions*")))
+     (setq completions (sort completions 'string-lessp))
      (if (and (eq last-command this-command)
             window (window-live-p window) (window-buffer window)
             (buffer-name (window-buffer window))
***************
*** 2833,2839 ****
  
        (let ((conf (current-window-configuration)))
        (with-output-to-temp-buffer "*Completions*"
!         (display-completion-list (sort completions 'string-lessp)))
        (message "Type space to flush; repeat completion command to scroll")
        (let (key first)
          (if (save-excursion
--- 2834,2840 ----
  
        (let ((conf (current-window-configuration)))
        (with-output-to-temp-buffer "*Completions*"
!         (display-completion-list completions))
        (message "Type space to flush; repeat completion command to scroll")
        (let (key first)
          (if (save-excursion



reply via email to

[Prev in Thread] Current Thread [Next in Thread]