aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-09-16 21:39:41 +0000
committerRichard M. Stallman1994-09-16 21:39:41 +0000
commitc1b97b443cc54c2e5789a4b968484bee160fd7c8 (patch)
tree6407c916ef004f8b1d65c63b0ae3d2d86e427980
parent9df38cef14365ebc9e138b4939853601962f1ba0 (diff)
downloademacs-c1b97b443cc54c2e5789a4b968484bee160fd7c8.tar.gz
emacs-c1b97b443cc54c2e5789a4b968484bee160fd7c8.zip
(dired-buffers-for-dir): Delete debugging code.
(dired-in-this-tree): Likewise.
-rw-r--r--lisp/dired.el6
1 files changed, 0 insertions, 6 deletions
diff --git a/lisp/dired.el b/lisp/dired.el
index d89bfbb17d6..43e1e8cfea9 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -1258,9 +1258,6 @@ Optional arg NO-ERROR-IF-NOT-FILEP means return nil if no filename on
1258;; The list is in reverse order of buffer creation, most recent last. 1258;; The list is in reverse order of buffer creation, most recent last.
1259;; As a side effect, killed dired buffers for DIR are removed from 1259;; As a side effect, killed dired buffers for DIR are removed from
1260;; dired-buffers. 1260;; dired-buffers.
1261 ;; For testing. -MDE 8/21/94
1262 (if (not (string-equal dir (expand-file-name dir)))
1263 (debug))
1264 (setq dir (file-name-as-directory dir)) 1261 (setq dir (file-name-as-directory dir))
1265 (let ((alist dired-buffers) result elt buf) 1262 (let ((alist dired-buffers) result elt buf)
1266 (while alist 1263 (while alist
@@ -1301,9 +1298,6 @@ Optional arg NO-ERROR-IF-NOT-FILEP means return nil if no filename on
1301 1298
1302(defun dired-in-this-tree (file dir) 1299(defun dired-in-this-tree (file dir)
1303 ;;"Is FILE part of the directory tree starting at DIR?" 1300 ;;"Is FILE part of the directory tree starting at DIR?"
1304 ;; For testing. -MDE 8/21/94
1305 (if (not (string-equal dir (expand-file-name dir)))
1306 (debug))
1307 (let (case-fold-search) 1301 (let (case-fold-search)
1308 (string-match (concat "^" (regexp-quote dir)) file))) 1302 (string-match (concat "^" (regexp-quote dir)) file)))
1309 1303