• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/progmodes/

Lines Matching +defs:buffer +defs:menu

105 ;;       (f90-add-imenu-menu)        ; extra menu with functions etc.
113 ;; The auto-fill and abbreviation minor modes are accessible from the F90 menu,
144 ;; f90-add-imenu-menu
259 :options '(f90-add-imenu-menu)
472 (easy-menu-define f90-menu map "Menu for F90 mode."
475 ,(custom-menu-create 'f90)
506 ["Upcase Keywords (buffer)" f90-upcase-keywords t]
507 ["Capitalize Keywords (buffer)" f90-capitalize-keywords t]
508 ["Downcase Keywords (buffer)" f90-downcase-keywords t]
522 ["Add imenu Menu" f90-add-imenu-menu
523 :active (not (lookup-key (current-local-map) [menu-bar index]))
534 (font-lock-fontify-buffer))
541 (font-lock-fontify-buffer))
548 (font-lock-fontify-buffer))
555 (font-lock-fontify-buffer))
599 (make-variable-buffer-local 'f90-cache-position)
669 (defun f90-add-imenu-menu ()
670 "Add an imenu menu to the menubar."
672 (if (lookup-key (current-local-map) [menu-bar index])
827 (setq indent-tabs-mode nil) ; auto buffer local
1185 statement in the buffer), move to the start of the buffer and
1781 (buffer-substring
1822 (display-buffer (f90-prepare-abbrev-list-buffer))
1825 (defun f90-prepare-abbrev-list-buffer ()
1826 "Create a buffer listing the F90 mode abbreviations."
1828 (set-buffer (get-buffer-create "*Abbrevs*"))
1829 (erase-buffer)
1832 (set-buffer-modified-p nil)
1834 (get-buffer-create "*Abbrevs*"))
1837 "Upcase all F90 keywords in the buffer."
1842 "Capitalize all F90 keywords in the buffer."
1847 "Downcase all F90 keywords in the buffer."
1868 "Change the case of F90 keywords in the region (if specified) or buffer.
1878 (modified (buffer-modified-p))
1893 saveword (buffer-substring back-point ref-point))
1895 (or (string= saveword (buffer-substring back-point ref-point))
1897 (or modified (set-buffer-modified-p nil))))))
1907 "Make the backslash character (\\) be non-special in the current buffer.