diff options
| author | Juri Linkov | 2004-12-13 05:21:11 +0000 |
|---|---|---|
| committer | Juri Linkov | 2004-12-13 05:21:11 +0000 |
| commit | 3f11c6df1d2c3e08bc95522b09903894d2f825f9 (patch) | |
| tree | 278c2b6090c934eec5e53f6f785e9ae5a1390433 | |
| parent | 27437d8bdbe0a6fef70f07544ca39abb72f4be12 (diff) | |
| download | emacs-3f11c6df1d2c3e08bc95522b09903894d2f825f9.tar.gz emacs-3f11c6df1d2c3e08bc95522b09903894d2f825f9.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 33 | ||||
| -rw-r--r-- | man/ChangeLog | 8 |
2 files changed, 41 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3e1962ab25e..866339b7ca5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,38 @@ | |||
| 1 | 2004-12-12 Juri Linkov <juri@jurta.org> | 1 | 2004-12-12 Juri Linkov <juri@jurta.org> |
| 2 | 2 | ||
| 3 | * files.el (find-file-other-window, find-file-other-frame): | ||
| 4 | Add the first buffer to the returned value to return the complete | ||
| 5 | list of all visited buffers. | ||
| 6 | (find-file-read-only, find-file-read-only-other-window) | ||
| 7 | (find-file-read-only-other-frame): Use nil for `mustmatch' arg of | ||
| 8 | `find-file-read-args'. Signal an error about non-existent file | ||
| 9 | only if file name doesn't contain wildcards. Toggle read-only in | ||
| 10 | all visited buffers. | ||
| 11 | (find-alternate-file, find-alternate-file-other-window): | ||
| 12 | Add optional arg `wildcards'. Doc fix. Set `wildcards' to t when | ||
| 13 | called interactively. Pass arg `wildcards' to other functions. | ||
| 14 | (find-file-noselect): Doc fix. | ||
| 15 | |||
| 16 | * ffap.el (ffap-dired-wildcards): Set default to "[*?][^/]*\\'". | ||
| 17 | Doc fix. | ||
| 18 | (ffap-directory-finder): New variable. | ||
| 19 | (ffap-string-at-point-mode-alist): Add * and ? to `file'. | ||
| 20 | (ffap-file-at-point): Add /* to immediately rejected names. | ||
| 21 | Return absolute file names matching ffap-dired-wildcards. | ||
| 22 | (ffap-read-file-or-url): Set default value for `completing-read' | ||
| 23 | to `buffer-file-name'. | ||
| 24 | (find-file-at-point): When filename matches ffap-dired-wildcards, | ||
| 25 | call ffap-file-finder with t arg `wildcards', instead of dired. | ||
| 26 | (ffap-other-window, ffap-other-frame): Return visited buffers. | ||
| 27 | (ffap-read-only, ffap-read-only-other-window) | ||
| 28 | (ffap-read-only-other-frame, ffap-alternate-file): New commands. | ||
| 29 | (dired-at-point): Call ffap-directory-finder instead of dired. | ||
| 30 | (ffap-dired-other-window, ffap-dired-other-frame) | ||
| 31 | (ffap-list-directory): New commands. | ||
| 32 | (ffap-bindings): New keybindings for new commands. | ||
| 33 | |||
| 34 | 2004-12-12 Juri Linkov <juri@jurta.org> | ||
| 35 | |||
| 3 | * simple.el (beginning-of-buffer, end-of-buffer): | 36 | * simple.el (beginning-of-buffer, end-of-buffer): |
| 4 | * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun): | 37 | * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun): |
| 5 | Do not push mark when mark is active in transient-mark-mode. | 38 | Do not push mark when mark is active in transient-mark-mode. |
diff --git a/man/ChangeLog b/man/ChangeLog index 55cf9803b79..6c760667cf1 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,5 +1,13 @@ | |||
| 1 | 2004-12-12 Juri Linkov <juri@jurta.org> | 1 | 2004-12-12 Juri Linkov <juri@jurta.org> |
| 2 | 2 | ||
| 3 | * misc.texi (FFAP): Add C-x C-r, C-x C-v, C-x C-d, | ||
| 4 | C-x 4 r, C-x 4 d, C-x 5 r, C-x 5 d. | ||
| 5 | |||
| 6 | * dired.texi (Dired Navigation): Add @r{(Dired)} to M-g. | ||
| 7 | (Misc Dired Commands): Add @r{(Dired)} to w. | ||
| 8 | |||
| 9 | 2004-12-12 Juri Linkov <juri@jurta.org> | ||
| 10 | |||
| 3 | * mark.texi (Marking Objects): Marking commands also extend the | 11 | * mark.texi (Marking Objects): Marking commands also extend the |
| 4 | region when mark is active in Transient Mark mode. | 12 | region when mark is active in Transient Mark mode. |
| 5 | 13 | ||