diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/dired.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bb5228a5ef7..c68c115e178 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2003-02-06 Matthew Swift <swift@alum.mit.edu> | ||
| 2 | |||
| 3 | * dired.el (dired-move-to-filename-regexp): Support "K" suffix on | ||
| 4 | "ls -alh" output. | ||
| 5 | |||
| 1 | 2003-02-05 Juanma Barranquero <lektu@terra.es> | 6 | 2003-02-05 Juanma Barranquero <lektu@terra.es> |
| 2 | 7 | ||
| 3 | * font-lock.el (font-lock-reference-face): Add obsolescence | 8 | * font-lock.el (font-lock-reference-face): Add obsolescence |
diff --git a/lisp/dired.el b/lisp/dired.el index d15d80411f1..6261e6bb392 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -1572,11 +1572,11 @@ DIR must be a directory name, not a file name." | |||
| 1572 | ;; The "[0-9]" below requires the previous column to end in a digit. | 1572 | ;; The "[0-9]" below requires the previous column to end in a digit. |
| 1573 | ;; This avoids recognizing `1 may 1997' as a date in the line: | 1573 | ;; This avoids recognizing `1 may 1997' as a date in the line: |
| 1574 | ;; -r--r--r-- 1 may 1997 1168 Oct 19 16:49 README | 1574 | ;; -r--r--r-- 1 may 1997 1168 Oct 19 16:49 README |
| 1575 | ;; The "[kMGTPEZY]?" below supports "ls -alh" output. | 1575 | ;; The "[kKMGTPEZY]?" below supports "ls -alh" output. |
| 1576 | ;; The ".*" below finds the last match if there are multiple matches. | 1576 | ;; The ".*" below finds the last match if there are multiple matches. |
| 1577 | ;; This avoids recognizing `jservice 10 1024' as a date in the line: | 1577 | ;; This avoids recognizing `jservice 10 1024' as a date in the line: |
| 1578 | ;; drwxr-xr-x 3 jservice 10 1024 Jul 2 1997 esg-host | 1578 | ;; drwxr-xr-x 3 jservice 10 1024 Jul 2 1997 esg-host |
| 1579 | (concat ".*[0-9][kMGTPEZY]?" s | 1579 | (concat ".*[0-9][kKMGTPEZY]?" s |
| 1580 | "\\(" western "\\|" western-comma "\\|" japanese "\\|" iso "\\)" | 1580 | "\\(" western "\\|" western-comma "\\|" japanese "\\|" iso "\\)" |
| 1581 | s "+")) | 1581 | s "+")) |
| 1582 | "Regular expression to match up to the file name in a directory listing. | 1582 | "Regular expression to match up to the file name in a directory listing. |