aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2014-10-15 13:32:41 -0400
committerStefan Monnier2014-10-15 13:32:41 -0400
commitdcdf2bd8d690168eed44563651e2d8f379b9c80e (patch)
tree5de46491f3995fbf10f56c780370f6bf00815a13 /src
parentf65b226e7abf1e746d9f6a995bf7db3da1997795 (diff)
downloademacs-dcdf2bd8d690168eed44563651e2d8f379b9c80e.tar.gz
emacs-dcdf2bd8d690168eed44563651e2d8f379b9c80e.zip
* lisp/emacs-lisp/eldoc.el (global-eldoc-mode): Enable by default.
Remove incorrect handling of eldoc-print-after-edit. (eldoc-message-commands, eldoc-last-data): Use defvar. * lisp/loadup.el (emacs-lisp/eldoc): Load it. * src/lisp.mk (lisp): Add emacs-lisp/eldoc.elc.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog23
-rw-r--r--src/lisp.mk1
2 files changed, 14 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b6f9401acf7..611e459d2a8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,18 +1,21 @@
12014-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * lisp.mk (lisp): Add emacs-lisp/eldoc.elc.
4
12014-10-15 Eli Zaretskii <eliz@gnu.org> 52014-10-15 Eli Zaretskii <eliz@gnu.org>
2 6
3 Update the bidirectional reordering engine for Unicode 6.3 and 7.0. 7 Update the bidirectional reordering engine for Unicode 6.3 and 7.0.
4 * bidi.c (bidi_ignore_explicit_marks_for_paragraph_level): Remove 8 * bidi.c (bidi_ignore_explicit_marks_for_paragraph_level):
5 variable. 9 Remove variable.
6 (bidi_get_type): Return the isolate initiators and terminator 10 (bidi_get_type): Return the isolate initiators and terminator types.
7 types.
8 (bidi_isolate_fmt_char, bidi_paired_bracket_type) 11 (bidi_isolate_fmt_char, bidi_paired_bracket_type)
9 (bidi_fetch_char_skip_isolates, find_first_strong_char) 12 (bidi_fetch_char_skip_isolates, find_first_strong_char)
10 (bidi_find_bracket_pairs, bidi_resolve_brackets): New functions. 13 (bidi_find_bracket_pairs, bidi_resolve_brackets): New functions.
11 (bidi_set_sos_type): Renamed from bidi_set_sor_type and updated 14 (bidi_set_sos_type): Rename from bidi_set_sor_type and updated
12 for the new features. 15 for the new features.
13 (bidi_push_embedding_level, bidi_pop_embedding_level): Update to 16 (bidi_push_embedding_level, bidi_pop_embedding_level): Update to
14 push and pop correctly for isolates. 17 push and pop correctly for isolates.
15 (bidi_remember_char): Modified to accept an additional argument 18 (bidi_remember_char): Modify to accept an additional argument
16 and record the bidi type according to its value. 19 and record the bidi type according to its value.
17 (bidi_cache_iterator_state): Accept an additional argument to only 20 (bidi_cache_iterator_state): Accept an additional argument to only
18 update an existing state. Handle the new members of struct bidi_it. 21 update an existing state. Handle the new members of struct bidi_it.
@@ -140,8 +143,8 @@
140 (ns_dumpglyphs_image, ns_check_menu_open) 143 (ns_dumpglyphs_image, ns_check_menu_open)
141 (applicationDidFinishLaunching) 144 (applicationDidFinishLaunching)
142 (antialiasThresholdDidChange:) 145 (antialiasThresholdDidChange:)
143 (keyDown:, toggleFullScreen:, setPosition:portion:whole:): Remove 146 (keyDown:, toggleFullScreen:, setPosition:portion:whole:):
144 checks for OSX <= 10.5/10.6. 147 Remove checks for OSX <= 10.5/10.6.
145 (changeFont:): Use macfont on COCOA, nsfont on GNUSTEP. 148 (changeFont:): Use macfont on COCOA, nsfont on GNUSTEP.
146 (syms_of_nsterm): Call syms_of_macfont on COCOA, syms_of_nsfont on 149 (syms_of_nsterm): Call syms_of_macfont on COCOA, syms_of_nsfont on
147 GNUSTEP. 150 GNUSTEP.
@@ -166,8 +169,8 @@
166 (macfont_create_family_with_symbol) 169 (macfont_create_family_with_symbol)
167 (macfont_get_glyph_for_character) 170 (macfont_get_glyph_for_character)
168 (mac_font_get_glyphs_for_variants) 171 (mac_font_get_glyphs_for_variants)
169 (mac_ctfont_create_available_families, syms_of_macfont): Remove 172 (mac_ctfont_create_available_families, syms_of_macfont):
170 code for OSX < 10.6. 173 Remove code for OSX < 10.6.
171 (mac_font_family_group, mac_font_family_compare): Remove, only used 174 (mac_font_family_group, mac_font_family_compare): Remove, only used
172 for OSX < 10.6. 175 for OSX < 10.6.
173 176
diff --git a/src/lisp.mk b/src/lisp.mk
index 642e9af225f..675df2b66e6 100644
--- a/src/lisp.mk
+++ b/src/lisp.mk
@@ -165,6 +165,7 @@ lisp = \
165 $(lispsource)/vc/vc-hooks.elc \ 165 $(lispsource)/vc/vc-hooks.elc \
166 $(lispsource)/vc/ediff-hook.elc \ 166 $(lispsource)/vc/ediff-hook.elc \
167 $(lispsource)/electric.elc \ 167 $(lispsource)/electric.elc \
168 $(lispsource)/emacs-lisp/eldoc.elc \
168 $(lispsource)/uniquify.elc \ 169 $(lispsource)/uniquify.elc \
169 $(lispsource)/tooltip.elc 170 $(lispsource)/tooltip.elc
170 171