diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-06-23 16:08:43 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-06-23 16:08:43 +0000 |
commit | b5251fe73ae82d411ac1af6a6f4daa85508a5198 (patch) | |
tree | af29c560dd3081ebfae45b74c899e4d31037cf31 /src | |
parent | 921baa95ba0fb833b6b5f08877bc1c63a97b9ce1 (diff) | |
download | emacs-b5251fe73ae82d411ac1af6a6f4daa85508a5198.tar.gz |
(make_frame_without_minibuffer): Follow error conventions.
Diffstat (limited to 'src')
-rw-r--r-- | src/frame.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frame.c b/src/frame.c index cfa4851d027..87fab89eb05 100644 --- a/src/frame.c +++ b/src/frame.c @@ -399,7 +399,7 @@ make_frame_without_minibuffer (mini_window, kb, display) #ifdef MULTI_KBOARD if (!NILP (mini_window) && XFRAME (XWINDOW (mini_window)->frame)->kboard != kb) - error ("frame and minibuffer must be on the same display"); + error ("Frame and minibuffer must be on the same display"); #endif /* Make a frame containing just a root window. */ @@ -3374,7 +3374,7 @@ extern char *x_get_string_resource P_ ((XrmDatabase, char *, char *)); extern Display_Info *check_x_display_info P_ ((Lisp_Object)); -/* Get specified attribute from resource database RDB. +/* Get specified attribute from resource database RDB. See Fx_get_resource below for other parameters. */ static Lisp_Object @@ -3511,7 +3511,7 @@ x_get_resource_string (attribute, class) Lisp_Object x_get_arg (dpyinfo, alist, param, attribute, class, type) - Display_Info *dpyinfo; + Display_Info *dpyinfo; Lisp_Object alist, param; char *attribute; char *class; |