Browse CVS Repository
Diff of /kogiku/kogiku/kogiku.el
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 110 |
(defvar kogiku-original-function-for-minibuffer-local-must-match-map |
(defvar kogiku-original-function-for-minibuffer-local-must-match-map |
| 111 |
nil) |
nil) |
| 112 |
|
|
| 113 |
(defun kogiku-completion-complete () |
(defun kogiku-completion-complete (&optional arg) |
| 114 |
(interactive) |
(interactive "P") |
| 115 |
(if (eq minibuffer-completion-table 'read-file-name-internal) |
(if (and |
| 116 |
|
arg |
| 117 |
|
(eq minibuffer-completion-table 'read-file-name-internal)) |
| 118 |
(setq minibuffer-completion-table |
(setq minibuffer-completion-table |
| 119 |
'kogiku-read-file-name-internal)) |
'kogiku-read-file-name-internal)) |
| 120 |
(funcall |
(funcall |
| 121 |
kogiku-original-function-for-minibuffer-local-completion-map)) |
kogiku-original-function-for-minibuffer-local-completion-map)) |
| 122 |
|
|
| 123 |
(defun kogiku-must-match-complete () |
(defun kogiku-must-match-complete (&optional arg) |
| 124 |
(interactive) |
(interactive "P") |
| 125 |
(if (eq minibuffer-completion-table 'read-file-name-internal) |
(if (and |
| 126 |
|
arg |
| 127 |
|
(eq minibuffer-completion-table 'read-file-name-internal)) |
| 128 |
(setq minibuffer-completion-table |
(setq minibuffer-completion-table |
| 129 |
'kogiku-read-file-name-internal)) |
'kogiku-read-file-name-internal)) |
| 130 |
(funcall |
(funcall |
|
|
Legend:
| Removed from v.1.4 |
|
| changed lines |
| |
Added in v.1.5 |
|
|
|