comparison src/emacs.c @ 85710:beb909dfc54d

Rewrite abbrev.c in Elisp. * image.c (Qcount): Don't declare as extern. (syms_of_image): Initialize and staticpro `Qcount'. * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions. * emacs.c (main): Don't call syms_of_abbrev. * Makefile.in (obj): Remove abbrev.o. (abbrev.o): Remove. * abbrev.c: Remove. Rewrite abbrev.c in Elisp. * abbrev.el (abbrev-mode): Move custom group from cus-edit.el. (abbrev-table-get, abbrev-table-put, abbrev-get) (abbrev-put, make-abbrev-table, abbrev-table-p, clear-abbrev-table) (define-abbrev, abbrev--check-chars, define-global-abbrev) (define-mode-abbrev, abbrev--active-tables, abbrev-symbol) (abbrev-expansion, abbrev--before-point, expand-abbrev) (unexpand-abbrev, abbrev--write, abbrev--describe) (insert-abbrev-table-description, define-abbrev-table): New funs, largely transcribed from abbrev.c. (abbrev-with-wrapper-hook): New macro. (abbrev-table-name-list, global-abbrev-table) (abbrev-minor-mode-table-alist, fundamental-mode-abbrev-table) (abbrevs-changed, abbrev-all-caps, abbrev-start-location) (abbrev-start-location-buffer, last-abbrev, last-abbrev-text) (last-abbrev-location, pre-abbrev-expand-hook, abbrev-expand-function): New vars, largely transcribed from abbrev.c. * cus-edit.el (abbrev-mode): Remove. Move to abbrev.el. * cus-start.el: Remove abbrev-all-caps and pre-abbrev-expand-hook. * loadup.el: Load "abbrev.el" before "lisp-mode.el".
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sun, 28 Oct 2007 02:41:00 +0000
parents 166fdd1797fe
children d3e87ee5aa0e
comparison
equal deleted inserted replaced
85709:2dabdbde81e8 85710:beb909dfc54d
1541 syms_of_print (); 1541 syms_of_print ();
1542 syms_of_eval (); 1542 syms_of_eval ();
1543 syms_of_fns (); 1543 syms_of_fns ();
1544 syms_of_floatfns (); 1544 syms_of_floatfns ();
1545 1545
1546 syms_of_abbrev ();
1547 syms_of_buffer (); 1546 syms_of_buffer ();
1548 syms_of_bytecode (); 1547 syms_of_bytecode ();
1549 syms_of_callint (); 1548 syms_of_callint ();
1550 syms_of_casefiddle (); 1549 syms_of_casefiddle ();
1551 syms_of_casetab (); 1550 syms_of_casetab ();