aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-07-13 23:45:21 +0000
committerGerd Moellmann2000-07-13 23:45:21 +0000
commit71e5b1b87f023c1e79b308e8b1170c1ecb864295 (patch)
treeeec96a8d3ff7c76969d5e91a50be83fa64d3e8ce /src
parent954f97acf66952d179ca3767315f162530937601 (diff)
downloademacs-71e5b1b87f023c1e79b308e8b1170c1ecb864295.tar.gz
emacs-71e5b1b87f023c1e79b308e8b1170c1ecb864295.zip
(eval_form): Make it externally visible.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index be2237ea67f..4afe2fd40ca 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -628,7 +628,6 @@ static struct text_pos display_prop_end P_ ((struct it *, Lisp_Object,
628 struct text_pos)); 628 struct text_pos));
629static int compute_window_start_on_continuation_line P_ ((struct window *)); 629static int compute_window_start_on_continuation_line P_ ((struct window *));
630static Lisp_Object eval_handler P_ ((Lisp_Object)); 630static Lisp_Object eval_handler P_ ((Lisp_Object));
631static Lisp_Object eval_form P_ ((Lisp_Object));
632static void insert_left_trunc_glyphs P_ ((struct it *)); 631static void insert_left_trunc_glyphs P_ ((struct it *));
633static struct glyph_row *get_overlay_arrow_glyph_row P_ ((struct window *)); 632static struct glyph_row *get_overlay_arrow_glyph_row P_ ((struct window *));
634static void extend_face_to_end_of_line P_ ((struct it *)); 633static void extend_face_to_end_of_line P_ ((struct it *));
@@ -1063,7 +1062,7 @@ eval_handler (arg)
1063/* Evaluate SEXPR and return the result, or nil if something went 1062/* Evaluate SEXPR and return the result, or nil if something went
1064 wrong. */ 1063 wrong. */
1065 1064
1066static Lisp_Object 1065Lisp_Object
1067eval_form (sexpr) 1066eval_form (sexpr)
1068 Lisp_Object sexpr; 1067 Lisp_Object sexpr;
1069{ 1068{