comparison lisp/behavior-defs.el @ 776:79940b592197

[xemacs-hg @ 2002-03-15 07:43:14 by ben] .cvsignore: ignore .tmp files that are getting auto-created by VC. Makefile.in.in: Use -no-packages to avoid problems with package files shadowing core files (e.g. unicode.el in mule-ucs). alloc.c, emacs.c, lisp.h: add new -no-packages. make sure list of args for sorting is actually correct. clean up arg parsing code. xemacs.mak: Use -no-packages to avoid problems with package files shadowing core files (e.g. unicode.el in mule-ucs). Makefile: Use -no-packages to avoid problems with package files shadowing core files (e.g. unicode.el in mule-ucs). mule\chinese.el, mule\japan-util.el: fix warnings. behavior-defs.el: fix errors with require. bytecomp-runtime.el: add new funs {when,and}-{f}boundp, clean up docs. cus-edit.el: pretty-print values. dump-paths.el, find-paths.el, startup.el, setup-paths.el: fix problems/inconsistencies parsing options. support new -no-packages option. merge code duplication in dump-paths and startup. lisp-mode.el: indent macrolet and labels correctly. update comments about lisp-indent-function. flet already handled in cl. apropos.el, auto-save.el, buff-menu.el, cl-extra.el, dragdrop.el, faces.el, files.el, fill.el, font-lock.el, font.el, gtk-faces.el, gui.el, help.el, hyper-apropos.el, info.el, isearch-mode.el, keymap.el, lisp-mnt.el, mouse.el, package-admin.el, package-get.el, printer.el, process.el, resize-minibuffer.el, simple.el, toolbar-items.el, wid-edit.el, win32-native.el: fix warnings. very-early-lisp.el: update docs. mule\chinese.el, mule\japan-util.el: fix warnings. mule\chinese.el, mule\japan-util.el: fix warnings. behavior-defs.el: fix errors with require. bytecomp-runtime.el: add new funs {when,and}-{f}boundp, clean up docs. cus-edit.el: pretty-print values. dump-paths.el, find-paths.el, startup.el, setup-paths.el: fix problems/inconsistencies parsing options. support new -no-packages option. merge code duplication in dump-paths and startup. lisp-mode.el: indent macrolet and labels correctly. update comments about lisp-indent-function. flet already handled in cl. apropos.el, auto-save.el, buff-menu.el, cl-extra.el, dragdrop.el, faces.el, files.el, fill.el, font-lock.el, font.el, gtk-faces.el, gui.el, help.el, hyper-apropos.el, info.el, isearch-mode.el, keymap.el, lisp-mnt.el, mouse.el, package-admin.el, package-get.el, printer.el, process.el, resize-minibuffer.el, simple.el, toolbar-items.el, wid-edit.el, win32-native.el: fix warnings. very-early-lisp.el: update docs. mule\chinese.el, mule\japan-util.el: fix warnings. Makefile.in.in: Use -no-packages to avoid problems with package files shadowing core files (e.g. unicode.el in mule-ucs). Makefile.in.in: Use -no-packages to avoid problems with package files shadowing core files (e.g. unicode.el in mule-ucs).
author ben
date Fri, 15 Mar 2002 07:43:43 +0000
parents 943eaba38521
children 5d1743698fb3
comparison
equal deleted inserted replaced
775:7d972c3de90a 776:79940b592197
272 :short-doc "Resize minibuffer automatically" 272 :short-doc "Resize minibuffer automatically"
273 :enable #'(lambda () 273 :enable #'(lambda ()
274 (resize-minibuffer-mode 1)) 274 (resize-minibuffer-mode 1))
275 :disable #'(lambda () 275 :disable #'(lambda ()
276 (resize-minibuffer-mode -1))) 276 (resize-minibuffer-mode -1)))
277
278 (eval-when-compile (require 'func-menu))
279 277
280 (define-behavior 'func-menu 278 (define-behavior 'func-menu
281 "Suppose you have a file with a lot of functions in it. Well, this 279 "Suppose you have a file with a lot of functions in it. Well, this
282 package makes it easy to jump to any of those functions. The names of 280 package makes it easy to jump to any of those functions. The names of
283 the functions in the current buffer are automatically put into menubar 281 the functions in the current buffer are automatically put into menubar
472 process. This can be avoided by disabling the save on exit from 470 process. This can be avoided by disabling the save on exit from
473 the menu." 471 the menu."
474 :short-doc "`Recent Files' menu" 472 :short-doc "`Recent Files' menu"
475 :enable 'recent-files-initialize) 473 :enable 'recent-files-initialize)
476 474
477 (eval-when-compile (require 'filladapt))
478 (define-behavior 'filladapt 475 (define-behavior 'filladapt
479 "These functions enhance the default behavior of Emacs' Auto Fill 476 "These functions enhance the default behavior of Emacs' Auto Fill
480 mode and the commands `fill-paragraph', `lisp-fill-paragraph', 477 mode and the commands `fill-paragraph', `lisp-fill-paragraph',
481 `fill-region-as-paragraph' and `fill-region'. 478 `fill-region-as-paragraph' and `fill-region'.
482 479