aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-27 13:54:56 +0000
committerJuanma Barranquero2006-11-27 13:54:56 +0000
commita861d465fd46bf649023419e49d8186a9658282a (patch)
tree90f8467b6ada3eefb5d58a34f1e2f675b18cc768
parent4789a3cb927763472772971cfc1e74c60f9a1839 (diff)
downloademacs-a861d465fd46bf649023419e49d8186a9658282a.tar.gz
emacs-a861d465fd46bf649023419e49d8186a9658282a.zip
(locate-main-listing-line-p, locate-mode, locate-do-setup): "?\ " -> "?\s".
-rw-r--r--lisp/locate.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/locate.el b/lisp/locate.el
index 9cf37e89ee1..bb3108210ed 100644
--- a/lisp/locate.el
+++ b/lisp/locate.el
@@ -430,7 +430,7 @@ file name or is inside a subdirectory."
430 (save-excursion 430 (save-excursion
431 (forward-line 0) 431 (forward-line 0)
432 (looking-at (concat "." 432 (looking-at (concat "."
433 (make-string (1- locate-filename-indentation) ?\ ) 433 (make-string (1- locate-filename-indentation) ?\s)
434 "\\(/\\|[A-Za-z]:\\)")))) 434 "\\(/\\|[A-Za-z]:\\)"))))
435 435
436(defun locate-mouse-view-file (event) 436(defun locate-mouse-view-file (event)
@@ -478,7 +478,7 @@ do not work in subdirectories.
478 ;; This should support both Unix and Windoze style names 478 ;; This should support both Unix and Windoze style names
479 (setq directory-listing-before-filename-regexp 479 (setq directory-listing-before-filename-regexp
480 (concat "^." 480 (concat "^."
481 (make-string (1- locate-filename-indentation) ?\ ) 481 (make-string (1- locate-filename-indentation) ?\s)
482 "\\(/\\|[A-Za-z]:\\)\\|" 482 "\\(/\\|[A-Za-z]:\\)\\|"
483 (default-value 'directory-listing-before-filename-regexp))) 483 (default-value 'directory-listing-before-filename-regexp)))
484 (make-local-variable 'dired-actual-switches) 484 (make-local-variable 'dired-actual-switches)
@@ -486,7 +486,7 @@ do not work in subdirectories.
486 (make-local-variable 'dired-permission-flags-regexp) 486 (make-local-variable 'dired-permission-flags-regexp)
487 (setq dired-permission-flags-regexp 487 (setq dired-permission-flags-regexp
488 (concat "^.\\(" 488 (concat "^.\\("
489 (make-string (1- locate-filename-indentation) ?\ ) 489 (make-string (1- locate-filename-indentation) ?\s)
490 "\\)\\|" 490 "\\)\\|"
491 (default-value 'dired-permission-flags-regexp))) 491 (default-value 'dired-permission-flags-regexp)))
492 (make-local-variable 'revert-buffer-function) 492 (make-local-variable 'revert-buffer-function)
@@ -511,7 +511,7 @@ do not work in subdirectories.
511 (locate-insert-header search-string) 511 (locate-insert-header search-string)
512 512
513 (while (not (eobp)) 513 (while (not (eobp))
514 (insert-char ?\ locate-filename-indentation t) 514 (insert-char ?\s locate-filename-indentation t)
515 (locate-set-properties) 515 (locate-set-properties)
516 (forward-line 1))) 516 (forward-line 1)))
517 (goto-char (point-min))) 517 (goto-char (point-min)))