emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/pcomplete.el [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/pcomplete.el [emacs-unicode-2]
Date: Thu, 04 Nov 2004 04:04:33 -0500

Index: emacs/lisp/pcomplete.el
diff -c emacs/lisp/pcomplete.el:1.13.6.3 emacs/lisp/pcomplete.el:1.13.6.4
*** emacs/lisp/pcomplete.el:1.13.6.3    Wed Oct 27 05:42:00 2004
--- emacs/lisp/pcomplete.el     Thu Nov  4 08:55:37 2004
***************
*** 150,156 ****
    :type 'boolean
    :group 'pcomplete)
  
! (defcustom pcomplete-suffix-list (list directory-sep-char ?:)
    "*A list of characters which constitute a proper suffix."
    :type '(repeat character)
    :group 'pcomplete)
--- 150,156 ----
    :type 'boolean
    :group 'pcomplete)
  
! (defcustom pcomplete-suffix-list (list ?/ ?:)
    "*A list of characters which constitute a proper suffix."
    :type '(repeat character)
    :group 'pcomplete)
***************
*** 740,746 ****
                 (function
                  (lambda (file)
                    (if (eq (aref file (1- (length file)))
!                           directory-sep-char)
                        (and pcomplete-dir-ignore
                             (string-match pcomplete-dir-ignore file))
                      (and pcomplete-file-ignore
--- 740,746 ----
                 (function
                  (lambda (file)
                    (if (eq (aref file (1- (length file)))
!                           ?/)
                        (and pcomplete-dir-ignore
                             (string-match pcomplete-dir-ignore file))
                      (and pcomplete-file-ignore
***************
*** 757,767 ****
               ;; since . is earlier in the ASCII alphabet than
               ;; /
               (let ((left (if (eq (aref l (1- (length l)))
!                                  directory-sep-char)
                               (substring l 0 (1- (length l)))
                             l))
                     (right (if (eq (aref r (1- (length r)))
!                                   directory-sep-char)
                                (substring r 0 (1- (length r)))
                              r)))
                 (if above-cutoff
--- 757,767 ----
               ;; since . is earlier in the ASCII alphabet than
               ;; /
               (let ((left (if (eq (aref l (1- (length l)))
!                                  ?/)
                               (substring l 0 (1- (length l)))
                             l))
                     (right (if (eq (aref r (1- (length r)))
!                                   ?/)
                                (substring r 0 (1- (length r)))
                              r)))
                 (if above-cutoff




reply via email to

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