comparison lisp/textmodes/ispell.el @ 105870:26baacb565b0

* textmodes/tex-mode.el (tex-alt-dvi-print-command) (tex-dvi-print-command, tex-bibtex-command, tex-start-commands) (tex-start-options, slitex-run-command, latex-run-command) (tex-run-command, tex-directory): * textmodes/ispell.el (ispell-html-skip-alists) (ispell-tex-skip-alists, ispell-tex-skip-alists): * textmodes/fill.el (adaptive-fill-first-line-regexp): (adaptive-fill-regexp): * textmodes/dns-mode.el (auto-mode-alist): * progmodes/python.el (interpreter-mode-alist): * progmodes/etags.el (tags-compression-info-list): * progmodes/etags.el (tags-file-name): * net/browse-url.el (browse-url-galeon-program) (browse-url-firefox-program): * mail/sendmail.el (mail-signature-file) (mail-citation-prefix-regexp): * international/mule-conf.el (eight-bit): * international/latexenc.el (latex-inputenc-coding-alist): * international/fontset.el (x-pixel-size-width-font-regexp): * emacs-lisp/warnings.el (warning-type-format): * emacs-lisp/trace.el (trace-buffer): * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map) (emacs-lisp-mode-map): * calendar/holidays.el (holiday-solar-holidays) (holiday-bahai-holidays, holiday-islamic-holidays) (holiday-christian-holidays, holiday-hebrew-holidays) (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2) (hebrew-holidays-1, holiday-oriental-holidays) (holiday-general-holidays): * x-dnd.el (x-dnd-known-types): * tool-bar.el (tool-bar): * startup.el (site-run-file): * shell.el (shell-dumb-shell-regexp): * rfn-eshadow.el (file-name-shadow-tty-properties) (file-name-shadow-properties): * paths.el (remote-shell-program, news-directory): * mouse.el ([C-down-mouse-3]): * menu-bar.el (menu-bar-tools-menu): * jka-cmpr-hook.el (jka-compr-load-suffixes) (jka-compr-mode-alist-additions, jka-compr-compression-info-list) (jka-compr-compression-info-list): * isearch.el (search-whitespace-regexp): * image-file.el (image-file-name-extensions): * find-dired.el (find-ls-option): * files.el (directory-listing-before-filename-regexp) (directory-free-space-args, insert-directory-program) (list-directory-brief-switches, magic-fallback-mode-alist) (magic-fallback-mode-alist, auto-mode-interpreter-regexp) (automount-dir-prefix): * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head) (x-font-regexp-slant, x-font-regexp-weight, face-x-resources) (face-font-registry-alternatives, face-font-registry-alternatives) (face-font-family-alternatives): * facemenu.el (facemenu-add-new-face, facemenu-background-menu) (facemenu-foreground-menu, facemenu-face-menu): * epa-hook.el (epa-file-name-regexp): * dnd.el (dnd-protocol-alist): * textmodes/rst.el (auto-mode-alist): * button.el (default-button): Purecopy strings.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 06 Nov 2009 05:16:23 +0000
parents 0ad1fc06bfc8
children 3f64b8380468
comparison
equal deleted inserted replaced
105869:95beb2b6cd0e 105870:26baacb565b0
1427 (put 'ispell-skip-region-alist 'risky-local-variable t) 1427 (put 'ispell-skip-region-alist 'risky-local-variable t)
1428 1428
1429 1429
1430 ;;;###autoload 1430 ;;;###autoload
1431 (defvar ispell-tex-skip-alists 1431 (defvar ispell-tex-skip-alists
1432 (purecopy
1432 '((;;("%\\[" . "%\\]") ; AMStex block comment... 1433 '((;;("%\\[" . "%\\]") ; AMStex block comment...
1433 ;; All the standard LaTeX keywords from L. Lamport's guide: 1434 ;; All the standard LaTeX keywords from L. Lamport's guide:
1434 ;; \cite, \hspace, \hspace*, \hyphenation, \include, \includeonly, \input, 1435 ;; \cite, \hspace, \hspace*, \hyphenation, \include, \includeonly, \input,
1435 ;; \label, \nocite, \rule (in ispell - rest included here) 1436 ;; \label, \nocite, \rule (in ispell - rest included here)
1436 ("\\\\addcontentsline" ispell-tex-arg-end 2) 1437 ("\\\\addcontentsline" ispell-tex-arg-end 2)
1445 (;; delimited with \begin. In ispell: displaymath, eqnarray, eqnarray*, 1446 (;; delimited with \begin. In ispell: displaymath, eqnarray, eqnarray*,
1446 ;; equation, minipage, picture, tabular, tabular* (ispell) 1447 ;; equation, minipage, picture, tabular, tabular* (ispell)
1447 ("\\(figure\\|table\\)\\*?" ispell-tex-arg-end 0) 1448 ("\\(figure\\|table\\)\\*?" ispell-tex-arg-end 0)
1448 ("list" ispell-tex-arg-end 2) 1449 ("list" ispell-tex-arg-end 2)
1449 ("program" . "\\\\end[ \t\n]*{[ \t\n]*program[ \t\n]*}") 1450 ("program" . "\\\\end[ \t\n]*{[ \t\n]*program[ \t\n]*}")
1450 ("verbatim\\*?" . "\\\\end[ \t\n]*{[ \t\n]*verbatim\\*?[ \t\n]*}"))) 1451 ("verbatim\\*?" . "\\\\end[ \t\n]*{[ \t\n]*verbatim\\*?[ \t\n]*}"))))
1451 "*Lists of regions to be skipped in TeX mode. 1452 "*Lists of regions to be skipped in TeX mode.
1452 First list is used raw. 1453 First list is used raw.
1453 Second list has key placed inside \\begin{}. 1454 Second list has key placed inside \\begin{}.
1454 1455
1455 Delete or add any regions you want to be automatically selected 1456 Delete or add any regions you want to be automatically selected
1456 for skipping in latex mode.") 1457 for skipping in latex mode.")
1457 (put 'ispell-tex-skip-alist 'risky-local-variable t) 1458 (put 'ispell-tex-skip-alist 'risky-local-variable t)
1458 1459
1459 1460
1460 ;;;###autoload 1461 ;;;###autoload
1461 (defvar ispell-html-skip-alists 1462 (defconst ispell-html-skip-alists
1462 '(("<[cC][oO][dD][eE]\\>[^>]*>" "</[cC][oO][dD][eE]*>") 1463 '(("<[cC][oO][dD][eE]\\>[^>]*>" "</[cC][oO][dD][eE]*>")
1463 ("<[sS][cC][rR][iI][pP][tT]\\>[^>]*>" "</[sS][cC][rR][iI][pP][tT]>") 1464 ("<[sS][cC][rR][iI][pP][tT]\\>[^>]*>" "</[sS][cC][rR][iI][pP][tT]>")
1464 ("<[aA][pP][pP][lL][eE][tT]\\>[^>]*>" "</[aA][pP][pP][lL][eE][tT]>") 1465 ("<[aA][pP][pP][lL][eE][tT]\\>[^>]*>" "</[aA][pP][pP][lL][eE][tT]>")
1465 ("<[vV][eE][rR][bB]\\>[^>]*>" "<[vV][eE][rR][bB]\\>[^>]*>") 1466 ("<[vV][eE][rR][bB]\\>[^>]*>" "<[vV][eE][rR][bB]\\>[^>]*>")
1466 ;;("<[tT][tT]\\>[^>]*>" "<[tT][tT]\\>[^>]*>") 1467 ;;("<[tT][tT]\\>[^>]*>" "<[tT][tT]\\>[^>]*>")