aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPavel Janík2001-10-08 06:45:26 +0000
committerPavel Janík2001-10-08 06:45:26 +0000
commit9180dc8c3d79c5fff98a6481830a78e9e8deae89 (patch)
tree8b2499bf4082bcdd0f960c0457e77aa1be4bac3a /src
parent01f67d2c303dcd8fd85a7f4359561a4d61249f7a (diff)
downloademacs-9180dc8c3d79c5fff98a6481830a78e9e8deae89.tar.gz
emacs-9180dc8c3d79c5fff98a6481830a78e9e8deae89.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/doc.c2
-rw-r--r--src/editfns.c1
-rw-r--r--src/lisp.h1
-rw-r--r--src/xfaces.c2
-rw-r--r--src/xfns.c6
6 files changed, 9 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 493a7f61d42..3c5cf4e4721 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12001-10-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 12001-10-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 2
3 * xfaces.c (free_frame_menubar): Add prototype.
4
3 * lisp.h (init_window): Add prototype. 5 * lisp.h (init_window): Add prototype.
4 6
5 * editfns.c: Include ctype.h. 7 * editfns.c: Include ctype.h.
diff --git a/src/doc.c b/src/doc.c
index 8f888316f7a..f98303a30de 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -396,7 +396,7 @@ DEFUN ("documentation-property", Fdocumentation_property,
396Third argument RAW omitted or nil means pass the result through\n\ 396Third argument RAW omitted or nil means pass the result through\n\
397`substitute-command-keys' if it is a string.\n\ 397`substitute-command-keys' if it is a string.\n\
398\n\ 398\n\
399This is differs from `get' in that it can refer to strings stored in the\n\ 399This differs from `get' in that it can refer to strings stored in the\n\
400`etc/DOC' file; and that it evaluates documentation properties that\n\ 400`etc/DOC' file; and that it evaluates documentation properties that\n\
401aren't strings.") 401aren't strings.")
402 (symbol, prop, raw) 402 (symbol, prop, raw)
diff --git a/src/editfns.c b/src/editfns.c
index 2cf10923b37..fba78c3a1be 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -21,6 +21,7 @@ Boston, MA 02111-1307, USA. */
21 21
22 22
23#include <config.h> 23#include <config.h>
24#include <ctype.h>
24#include <sys/types.h> 25#include <sys/types.h>
25 26
26#ifdef VMS 27#ifdef VMS
diff --git a/src/lisp.h b/src/lisp.h
index 6d46be83ea3..b483e72cef7 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -2773,6 +2773,7 @@ EXFUN (Fset_window_start, 3);
2773extern void temp_output_buffer_show P_ ((Lisp_Object)); 2773extern void temp_output_buffer_show P_ ((Lisp_Object));
2774extern void replace_buffer_in_all_windows P_ ((Lisp_Object)); 2774extern void replace_buffer_in_all_windows P_ ((Lisp_Object));
2775extern void init_window_once P_ ((void)); 2775extern void init_window_once P_ ((void));
2776extern void init_window P_ ((void));
2776extern void syms_of_window P_ ((void)); 2777extern void syms_of_window P_ ((void));
2777extern void keys_of_window P_ ((void)); 2778extern void keys_of_window P_ ((void));
2778 2779
diff --git a/src/xfaces.c b/src/xfaces.c
index e39dfe214f7..94541654238 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -605,6 +605,8 @@ extern Lisp_Object w32_list_fonts P_ ((struct frame *, Lisp_Object, int, int));
605 605
606#ifdef USE_X_TOOLKIT 606#ifdef USE_X_TOOLKIT
607static void x_update_menu_appearance P_ ((struct frame *)); 607static void x_update_menu_appearance P_ ((struct frame *));
608
609extern void free_frame_menubar P_ ((struct frame *));
608#endif /* USE_X_TOOLKIT */ 610#endif /* USE_X_TOOLKIT */
609 611
610#endif /* HAVE_WINDOW_SYSTEM */ 612#endif /* HAVE_WINDOW_SYSTEM */
diff --git a/src/xfns.c b/src/xfns.c
index 338a8781d28..3f61e643159 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -11149,7 +11149,7 @@ Text larger than the specified size is clipped.")
11149 11149
11150DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0, 11150DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
11151 "Hide the current tooltip window, if there is any.\n\ 11151 "Hide the current tooltip window, if there is any.\n\
11152Value is t is tooltip was open, nil otherwise.") 11152Value is t if tooltip was open, nil otherwise.")
11153 () 11153 ()
11154{ 11154{
11155 int count; 11155 int count;
@@ -11185,7 +11185,7 @@ Value is t is tooltip was open, nil otherwise.")
11185 struct frame *f = SELECTED_FRAME (); 11185 struct frame *f = SELECTED_FRAME ();
11186 Widget w = f->output_data.x->menubar_widget; 11186 Widget w = f->output_data.x->menubar_widget;
11187 extern void xlwmenu_redisplay P_ ((Widget)); 11187 extern void xlwmenu_redisplay P_ ((Widget));
11188 11188
11189 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f)->screen) 11189 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f)->screen)
11190 && w != NULL) 11190 && w != NULL)
11191 { 11191 {
@@ -11253,9 +11253,7 @@ selection dialog's entry field, if MUSTMATCH is non-nil.")
11253 Arg al[10]; 11253 Arg al[10];
11254 int ac = 0; 11254 int ac = 0;
11255 extern XtAppContext Xt_app_con; 11255 extern XtAppContext Xt_app_con;
11256 char *title;
11257 XmString dir_xmstring, pattern_xmstring; 11256 XmString dir_xmstring, pattern_xmstring;
11258 int popup_activated_flag;
11259 int count = specpdl_ptr - specpdl; 11257 int count = specpdl_ptr - specpdl;
11260 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; 11258 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
11261 11259