aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2007-11-20 00:40:35 +0000
committerDan Nicolaescu2007-11-20 00:40:35 +0000
commitec6918a80feeee705679f5ca8b365e30a53c6a3d (patch)
tree5bc8b8aa0ded07e6a2197f6cf0c2adfc3b874d1b
parent8950769ab60b83a1d572681ebe3e74e0c07cd62d (diff)
downloademacs-ec6918a80feeee705679f5ca8b365e30a53c6a3d.tar.gz
emacs-ec6918a80feeee705679f5ca8b365e30a53c6a3d.zip
* progmodes/octave-mod.el (inferior-octave-send-list-and-digest):
* play/yow.el (doctor-ret-or-read): * vc-hooks.el (vc-dired-resynch-file): * vc-hg.el (log-view-get-marked): * smerge-mode.el (ediff-cleanup-mess): * pcvs.el (vc-editable-p, vc-checkout): * pcomplete.el (comint-bol): * informat.el (texinfo-format-refill): * ido.el (tramp-tramp-file-p): * ibuffer.el (ibuffer-mark-on-buffer, ibuffer-format-qualifier) (ibuffer-generate-filter-groups, ibuffer-format-filter-group-data): * add-log.el (c-beginning-of-defun, c-end-of-defun): Declare as functions. * textmodes/ispell.el (ispell-int-char): Make it a defalias instead of fset. (ispell-message): Use with-no-warnings for sc-cite-regexp call. * ido.el (ido-file-internal): Move with-no-warnings to include the ffap-string-at-point call. * pcomplete.el (pcomplete-executables): Move defsubst before first use. * vc-hg.el (vc-hg-revision-table): Fix last change.
-rw-r--r--lisp/textmodes/ispell.el19
1 files changed, 10 insertions, 9 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index fbeeffaee02..444cf1985e8 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -1161,12 +1161,13 @@ The variable `ispell-library-directory' defines the library location."
1161 (delete-menu-item '("Edit" "Spell")) ; in case already defined 1161 (delete-menu-item '("Edit" "Spell")) ; in case already defined
1162 (add-menu '("Edit") "Spell" ispell-menu-xemacs)))))) 1162 (add-menu '("Edit") "Spell" ispell-menu-xemacs))))))
1163 1163
1164;;; Allow incrementing characters as integers in XEmacs 20 1164(defalias 'ispell-int-char
1165(if (and (featurep 'xemacs) 1165 ;; Allow incrementing characters as integers in XEmacs 20
1166 (fboundp 'int-char)) 1166 (if (and (featurep 'xemacs)
1167 (fset 'ispell-int-char 'int-char) 1167 (fboundp 'int-char))
1168 ;; Emacs and XEmacs 19 or earlier 1168 'int-char
1169 (fset 'ispell-int-char 'identity)) 1169 ;; Emacs and XEmacs 19 or earlier
1170 'identity))
1170 1171
1171 1172
1172;;; ********************************************************************** 1173;;; **********************************************************************
@@ -3533,9 +3534,9 @@ You can bind this to the key C-c i in GNUS or mail by adding to
3533 (cite-regexp ;Prefix of quoted text 3534 (cite-regexp ;Prefix of quoted text
3534 (cond 3535 (cond
3535 ((functionp 'sc-cite-regexp) ; sc 3.0 3536 ((functionp 'sc-cite-regexp) ; sc 3.0
3536 (concat "\\(" (sc-cite-regexp) "\\)" "\\|" 3537 (with-no-warnings
3537 (with-no-warnings 3538 (concat "\\(" (sc-cite-regexp) "\\)" "\\|"
3538 (ispell-non-empty-string sc-reference-tag-string)))) 3539 (ispell-non-empty-string sc-reference-tag-string))))
3539 ((boundp 'sc-cite-regexp) ; sc 2.3 3540 ((boundp 'sc-cite-regexp) ; sc 2.3
3540 (concat "\\(" sc-cite-regexp "\\)" "\\|" 3541 (concat "\\(" sc-cite-regexp "\\)" "\\|"
3541 (with-no-warnings 3542 (with-no-warnings