• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/obsolete/

Lines Matching +refs:mode +refs:symbol

1 ;;; iso-acc.el --- minor mode providing electric accent keys
29 ;; Function `iso-accents-mode' activates a minor mode in which
34 ;; In `iso-accents-mode', pseudo accent characters are used to
61 ;; Function `iso-accents-mode' can be used to enable the iso accents
62 ;; minor mode, or disable it.
74 "Minor mode providing electric accent keys."
79 "*Offset added by ISO Accents mode to character codes 0200 and above."
241 "List of language-specific customizations for the ISO Accents mode.
251 CHARSET (which may be omitted) is the symbol name
261 "Language for which ISO Accents mode is currently customized.
267 (defcustom iso-accents-mode nil
268 "*Non-nil enables ISO Accents mode.
270 See the function `iso-accents-mode'."
273 (make-variable-buffer-local 'iso-accents-mode)
276 "*List of accent keys that become prefixes in ISO Accents mode.
290 (if (and iso-accents-mode
338 ;; It is a matter of taste if you want the minor mode indicated
339 ;; in the mode line...
341 ;; (or (assq 'iso-accents-mode minor-mode-alist)
342 ;; (setq minor-mode-alist
343 ;; (append minor-mode-alist
344 ;; '((iso-accents-mode " ISO-Acc")))))
347 (defun iso-accents-mode (&optional arg)
348 "Toggle ISO Accents mode, in which accents modify the following letter.
350 When Iso-accents mode is enabled, accent character keys
354 You can customize ISO Accents mode to a particular language
367 With an argument, a positive argument enables ISO Accents mode,
376 iso-accents-mode)
377 (setq iso-accents-mode nil)
380 (setq iso-accents-mode t)))
414 This uses the same conversion that ISO Accents mode uses for type-in."
444 This uses the opposite of the conversion done by ISO Accents mode for type-in."
482 ;; Use Iso-Accents mode in the minibuffer
485 (setq iso-accents-mode
488 iso-accents-mode)))