diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 19 | ||||
| -rw-r--r-- | lisp/emacs-lisp/regexp-opt.el | 13 | ||||
| -rw-r--r-- | lisp/emacs-lisp/unsafep.el | 8 | ||||
| -rw-r--r-- | lisp/international/characters.el | 3 | ||||
| -rw-r--r-- | lisp/minibuffer.el | 9 | ||||
| -rw-r--r-- | lisp/repeat.el | 2 |
6 files changed, 36 insertions, 18 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ed11b1c19b1..8d9a1a46bf6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,22 @@ | |||
| 1 | 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * repeat.el (repeat): Use read-key (bug#6256). | ||
| 4 | |||
| 5 | 2010-10-19 Chong Yidong <cyd@stupidchicken.com> | ||
| 6 | |||
| 7 | * emacs-lisp/unsafep.el: Don't mark functions that display | ||
| 8 | messages as safe. Suggested by Johan Bockgård. | ||
| 9 | |||
| 10 | 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 11 | |||
| 12 | * minibuffer.el (completion--replace): Move point where it belongs | ||
| 13 | when there's a common suffix (bug#7215). | ||
| 14 | |||
| 15 | 2010-10-19 Kenichi Handa <handa@m17n.org> | ||
| 16 | |||
| 17 | * international/characters.el: Add category '|' (word breakable) | ||
| 18 | to fullwidth characters. | ||
| 19 | |||
| 1 | 2010-10-19 Michael Albinus <michael.albinus@gmx.de> | 20 | 2010-10-19 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 21 | ||
| 3 | * net/tramp-sh.el (tramp-do-file-attributes-with-stat) | 22 | * net/tramp-sh.el (tramp-do-file-attributes-with-stat) |
diff --git a/lisp/emacs-lisp/regexp-opt.el b/lisp/emacs-lisp/regexp-opt.el index 6389b62ea04..116d7b93d90 100644 --- a/lisp/emacs-lisp/regexp-opt.el +++ b/lisp/emacs-lisp/regexp-opt.el | |||
| @@ -141,11 +141,10 @@ This means the number of non-shy regexp grouping constructs | |||
| 141 | (require 'cl)) | 141 | (require 'cl)) |
| 142 | 142 | ||
| 143 | (defun regexp-opt-group (strings &optional paren lax) | 143 | (defun regexp-opt-group (strings &optional paren lax) |
| 144 | ;; Return a regexp to match a string in the sorted list STRINGS. | 144 | "Return a regexp to match a string in the sorted list STRINGS. |
| 145 | ;; If PAREN non-nil, output regexp parentheses around returned regexp. | 145 | If PAREN non-nil, output regexp parentheses around returned regexp. |
| 146 | ;; If LAX non-nil, don't output parentheses if it doesn't require them. | 146 | If LAX non-nil, don't output parentheses if it doesn't require them. |
| 147 | ;; Merges keywords to avoid backtracking in Emacs' regexp matcher. | 147 | Merges keywords to avoid backtracking in Emacs' regexp matcher." |
| 148 | |||
| 149 | ;; The basic idea is to find the shortest common prefix or suffix, remove it | 148 | ;; The basic idea is to find the shortest common prefix or suffix, remove it |
| 150 | ;; and recurse. If there is no prefix, we divide the list into two so that | 149 | ;; and recurse. If there is no prefix, we divide the list into two so that |
| 151 | ;; \(at least) one half will have at least a one-character common prefix. | 150 | ;; \(at least) one half will have at least a one-character common prefix. |
| @@ -239,9 +238,7 @@ This means the number of non-shy regexp grouping constructs | |||
| 239 | 238 | ||
| 240 | 239 | ||
| 241 | (defun regexp-opt-charset (chars) | 240 | (defun regexp-opt-charset (chars) |
| 242 | ;; | 241 | "Return a regexp to match a character in CHARS." |
| 243 | ;; Return a regexp to match a character in CHARS. | ||
| 244 | ;; | ||
| 245 | ;; The basic idea is to find character ranges. Also we take care in the | 242 | ;; The basic idea is to find character ranges. Also we take care in the |
| 246 | ;; position of character set meta characters in the character set regexp. | 243 | ;; position of character set meta characters in the character set regexp. |
| 247 | ;; | 244 | ;; |
diff --git a/lisp/emacs-lisp/unsafep.el b/lisp/emacs-lisp/unsafep.el index 851a1f7652b..a62f8de4010 100644 --- a/lisp/emacs-lisp/unsafep.el +++ b/lisp/emacs-lisp/unsafep.el | |||
| @@ -101,15 +101,13 @@ in the parse.") | |||
| 101 | (dolist (x '(;;Special forms | 101 | (dolist (x '(;;Special forms |
| 102 | and catch if or prog1 prog2 progn while unwind-protect | 102 | and catch if or prog1 prog2 progn while unwind-protect |
| 103 | ;;Safe subrs that have some side-effects | 103 | ;;Safe subrs that have some side-effects |
| 104 | ding error message minibuffer-message random read-minibuffer | 104 | ding error random signal sleep-for string-match throw |
| 105 | signal sleep-for string-match throw y-or-n-p yes-or-no-p | ||
| 106 | ;;Defsubst functions from subr.el | 105 | ;;Defsubst functions from subr.el |
| 107 | caar cadr cdar cddr | 106 | caar cadr cdar cddr |
| 108 | ;;Macros from subr.el | 107 | ;;Macros from subr.el |
| 109 | save-match-data unless when with-temp-message | 108 | save-match-data unless when |
| 110 | ;;Functions from subr.el that have side effects | 109 | ;;Functions from subr.el that have side effects |
| 111 | read-passwd split-string replace-regexp-in-string | 110 | split-string replace-regexp-in-string play-sound-file)) |
| 112 | play-sound-file)) | ||
| 113 | (put x 'safe-function t)) | 111 | (put x 'safe-function t)) |
| 114 | 112 | ||
| 115 | ;;;###autoload | 113 | ;;;###autoload |
diff --git a/lisp/international/characters.el b/lisp/international/characters.el index cf43bb1e6ca..e33f1449357 100644 --- a/lisp/international/characters.el +++ b/lisp/international/characters.el | |||
| @@ -188,6 +188,9 @@ Combining diacritic or mark (Unicode General Category M)") | |||
| 188 | cp932-2-byte)) | 188 | cp932-2-byte)) |
| 189 | (map-charset-chars #'modify-category-entry l ?j)) | 189 | (map-charset-chars #'modify-category-entry l ?j)) |
| 190 | 190 | ||
| 191 | ;; Fullwidth characters | ||
| 192 | (modify-category-entry '(#xff01 . #xff60) ?\|) | ||
| 193 | |||
| 191 | ;; Unicode equivalents of JISX0201-kana | 194 | ;; Unicode equivalents of JISX0201-kana |
| 192 | (let ((range '(#xff61 . #xff9f))) | 195 | (let ((range '(#xff61 . #xff9f))) |
| 193 | (modify-category-entry range ?k) | 196 | (modify-category-entry range ?k) |
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 98380f3926e..ee1fcae3119 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el | |||
| @@ -508,10 +508,11 @@ Moves point to the end of the new text." | |||
| 508 | (setq suffix-len (1+ suffix-len))) | 508 | (setq suffix-len (1+ suffix-len))) |
| 509 | (unless (zerop suffix-len) | 509 | (unless (zerop suffix-len) |
| 510 | (setq end (- end suffix-len)) | 510 | (setq end (- end suffix-len)) |
| 511 | (setq newtext (substring newtext 0 (- suffix-len))))) | 511 | (setq newtext (substring newtext 0 (- suffix-len)))) |
| 512 | (goto-char beg) | 512 | (goto-char beg) |
| 513 | (insert newtext) | 513 | (insert newtext) |
| 514 | (delete-region (point) (+ (point) (- end beg)))) | 514 | (delete-region (point) (+ (point) (- end beg))) |
| 515 | (forward-char suffix-len))) | ||
| 515 | 516 | ||
| 516 | (defcustom completion-cycle-threshold nil | 517 | (defcustom completion-cycle-threshold nil |
| 517 | "Number of completion candidates below which cycling is used. | 518 | "Number of completion candidates below which cycling is used. |
diff --git a/lisp/repeat.el b/lisp/repeat.el index 86484ec68d6..abab47e7dc8 100644 --- a/lisp/repeat.el +++ b/lisp/repeat.el | |||
| @@ -335,7 +335,7 @@ recently executed command not bound to an input event\"." | |||
| 335 | (setq real-last-command 'repeat) | 335 | (setq real-last-command 'repeat) |
| 336 | (setq repeat-undo-count 1) | 336 | (setq repeat-undo-count 1) |
| 337 | (unwind-protect | 337 | (unwind-protect |
| 338 | (while (let ((evt (read-event))) ;FIXME: read-key maybe? | 338 | (while (let ((evt (read-key))) |
| 339 | ;; For clicks, we need to strip the meta-data to | 339 | ;; For clicks, we need to strip the meta-data to |
| 340 | ;; check the underlying event name. | 340 | ;; check the underlying event name. |
| 341 | (eq (or (car-safe evt) evt) | 341 | (eq (or (car-safe evt) evt) |