From: Gerd Moellmann Date: Mon, 19 Jun 2000 15:58:23 +0000 (+0000) Subject: (syms_of_abbrev): Set buffer_default's abbrev table X-Git-Tag: emacs-pretest-21.0.90~3243 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c8bb816774000f1f139eded53827673db6f64bed;p=emacs.git (syms_of_abbrev): Set buffer_default's abbrev table to Vfundamental_mode_abbrev_table. --- diff --git a/src/abbrev.c b/src/abbrev.c index ca97637a23a..f30986db343 100644 --- a/src/abbrev.c +++ b/src/abbrev.c @@ -555,6 +555,7 @@ for any particular abbrev defined in both."); "The abbrev table of mode-specific abbrevs for Fundamental Mode."); Vfundamental_mode_abbrev_table = Fmake_abbrev_table (); current_buffer->abbrev_table = Vfundamental_mode_abbrev_table; + buffer_defaults.abbrev_table = Vfundamental_mode_abbrev_table; DEFVAR_LISP ("last-abbrev", &Vlast_abbrev, "The abbrev-symbol of the last abbrev expanded. See `abbrev-symbol'.");