Mercurial > emacs
comparison lisp/cus-start.el @ 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 | 46b60051ddcc |
children | d82ff29a8896 880960b70474 |
comparison
equal
deleted
inserted
replaced
85709:2dabdbde81e8 | 85710:beb909dfc54d |
---|---|
33 ;; this file is loaded again with (require 'cus-start); | 33 ;; this file is loaded again with (require 'cus-start); |
34 ;; then it does the whole job. | 34 ;; then it does the whole job. |
35 | 35 |
36 ;;; Code: | 36 ;;; Code: |
37 | 37 |
38 (let ((all '(;; abbrev.c | 38 (let ((all '(;; alloc.c |
39 (abbrev-all-caps abbrev-mode boolean) | |
40 (pre-abbrev-expand-hook abbrev-mode hook) | |
41 ;; alloc.c | |
42 (gc-cons-threshold alloc integer) | 39 (gc-cons-threshold alloc integer) |
43 (garbage-collection-messages alloc boolean) | 40 (garbage-collection-messages alloc boolean) |
44 ;; buffer.c | 41 ;; buffer.c |
45 (mode-line-format modeline sexp) ;Hard to do right. | 42 (mode-line-format modeline sexp) ;Hard to do right. |
46 (default-major-mode internal function) | 43 (default-major-mode internal function) |