Mercurial > emacs
comparison lisp/dabbrev.el @ 88123:375f2633d815
New directory
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 08 Sep 2003 11:56:09 +0000 |
parents | 695cf19ef79e |
children | 68c22ea6027c |
comparison
equal
deleted
inserted
replaced
52428:27bc8b966642 | 88123:375f2633d815 |
---|---|
849 (delq (dabbrev--minibuffer-origin) list)))) | 849 (delq (dabbrev--minibuffer-origin) list)))) |
850 list)) | 850 list)) |
851 | 851 |
852 (defun dabbrev--safe-replace-match (string &optional fixedcase literal) | 852 (defun dabbrev--safe-replace-match (string &optional fixedcase literal) |
853 (if (eq major-mode 'picture-mode) | 853 (if (eq major-mode 'picture-mode) |
854 (with-no-warnings | 854 (picture-replace-match string fixedcase literal) |
855 (picture-replace-match string fixedcase literal)) | |
856 (replace-match string fixedcase literal))) | 855 (replace-match string fixedcase literal))) |
857 | 856 |
858 ;;;---------------------------------------------------------------- | 857 ;;;---------------------------------------------------------------- |
859 (defun dabbrev--substitute-expansion (old abbrev expansion record-case-pattern) | 858 (defun dabbrev--substitute-expansion (old abbrev expansion record-case-pattern) |
860 "Replace OLD with EXPANSION in the buffer. | 859 "Replace OLD with EXPANSION in the buffer. |
1026 "^No possible abbreviation preceding point$")) | 1025 "^No possible abbreviation preceding point$")) |
1027 (add-to-list 'debug-ignored-errors mess)) | 1026 (add-to-list 'debug-ignored-errors mess)) |
1028 | 1027 |
1029 (provide 'dabbrev) | 1028 (provide 'dabbrev) |
1030 | 1029 |
1031 ;;; arch-tag: 29e58596-f080-4306-a409-70296cf9d46f | |
1032 ;;; dabbrev.el ends here | 1030 ;;; dabbrev.el ends here |