;ELC ;;; compiled by cthomp@willow on Sun Aug 29 22:38:49 1993 ;;; from file /era/era-working/editor/lisp/prim/case-table.el ;;; emacs version 19.8 (beta10) Lucid. ;;; bytecomp version 2.17; 23-aug-93. ;;; optimization is on. ;;; this file uses opcodes which do not exist in Emacs 18. (if (and (boundp 'emacs-version) (or (and (boundp 'epoch::version) epoch::version) (string-lessp emacs-version "19"))) (error "This file was compiled for Emacs 19.")) (fset 'describe-buffer-case-table #[nil "\" Ȑ q W U !cj !ͱ U !cj !ͱ TF+" [make-vector 256 nil current-case-table 0 ch case-table vector "*Help*" standard-output text-char-description 16 "uppercase, matches " "\n" "lowercase, matches "] 5 "\ Describe the case table of the current buffer." nil]) (fset 'invert-case #[(count) "W`S[^[uVg\nU\nc!\n\nU\nc!u)SP" [count 0 ch delete-char 1] 3 "\ Change the case of the character just after point and move over it. With arg, applies to that many chars. Negative arg inverts characters before point but does not move." "p"]) (fset 'set-case-syntax-delims #[(l r table) "@ I@\nI \n!Q # \n!Q#\n !Q #\n !Q#" [table l r modify-syntax-entry "(" char-to-string " " standard-syntax-table text-mode-syntax-table ")"] 5 "\ Make characters L and R a matching pair of non-case-converting delimiters. Sets the entries for L and R in standard-case-table, standard-syntax-table, and text-mode-syntax-table to indicate left and right delimiters."]) (fset 'set-case-syntax-pair #[(uc lc table) "@ \nI\n #\n# # #" [table uc lc modify-syntax-entry "w " standard-syntax-table text-mode-syntax-table] 4 "\ Make characters UC and LC a pair of inter-case-converting letters. Sets the entries for characters UC and LC in standard-case-table, standard-syntax-table, and text-mode-syntax-table to indicate an (uppercase, lowercase) pair of letters."]) (fset 'set-case-syntax #[(c syntax table) "@ I # #" [table c modify-syntax-entry syntax standard-syntax-table text-mode-syntax-table] 4 "\ Make characters C case-invariant with syntax SYNTAX. Sets the entries for character C in standard-case-table, standard-syntax-table, and text-mode-syntax-table to indicate this. SYNTAX should be \" \", \"w\", \".\" or \"_\"."]) (provide 'case-table)