]> git.eshelyaron.com Git - emacs.git/commitdiff
; Spelling and minor wording fixes
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 14 Apr 2017 19:42:03 +0000 (12:42 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 14 Apr 2017 19:42:31 +0000 (12:42 -0700)
ChangeLog.2
doc/lispref/frames.texi
lisp/progmodes/xref.el
src/frame.c
src/gtkutil.c
src/xfns.c

index a9e1dd2a11773a4d16cf5125e69cd4519289953b..c1e10b19e1e85cce91670d1aee8aba451d7c3f65 100644 (file)
 
 2015-08-07  Phillip Lord  <phillip.lord@newcastle.ac.uk>
 
-       Improve error signalling for seq-subseq
+       Improve error signaling for seq-subseq
        * lisp/emacs-lisp/seq.el (seq-subseq): The existing behavior is to error
        when indexes are too large, but to silently ignore numbers which
        are too negative for lists.  String and vector handling errors in
index 9a32f0045a22ce4244b754315ddc5bbb908cfe03..8fc4d7d6497f8cfd8c6fcd733ac8ac0f8d2adedd 100644 (file)
@@ -2480,7 +2480,7 @@ raise @var{frame} above other frames.
 
 On MS-Windows the @var{noactivate} argument has no effect.  However, if
 @var{frame} is a child frame (@pxref{Child Frames}), this function
-usualy does focus @var{frame} without raising it above other child
+usually focuses @var{frame} without raising it above other child
 frames.
 
 If there is no window system support, this function does nothing.
@@ -2835,7 +2835,7 @@ whose window-system window is a child of its display's root window.
 child and a parent frame.  Also, the relative roles of child and parent
 frame may be reversed at any time (though it's usually a good idea to
 keep the size of child frames sufficiently smaller than that of their
-parent).  An error will be signalled for the attempt to make a frame an
+parent).  An error will be signaled for the attempt to make a frame an
 ancestor of itself.
 
   A child frame is clipped at the native edges (@pxref{Frame Geometry})
index e9c42a129a8a227ada9f2fef5fcadc8bb5b8b737..1ca3e1d153959ee9efdc77c3123d3a14547f1d2f 100644 (file)
@@ -932,7 +932,7 @@ IGNORES is a list of glob patterns."
       (erase-buffer)
       (call-process-shell-command command nil t)
       ;; FIXME: What to do when the call fails?
-      ;; "find: ‘zzgrep’: No such file or directory\n"
+      ;; "find: ‘foo’: No such file or directory\n"
       ;; The problem is, find-grep can exit with a nonzero code even
       ;; when there are some matches in the output.
       (goto-char (point-min))
index fc7982d0d55101e8ec9af31cffad531246bb7f28..282b691c277ec3deda24599ecc0a860f9facaaba 100644 (file)
@@ -337,7 +337,7 @@ DEFUN ("frame-windows-min-size", Fframe_windows_min_size,
  * value to be returned.  In that latter case IGNORE is ignored.
  *
  * If `frame-windows-min-size' is called, it will make sure that the
- * return value accomodates all windows of FRAME respecting the values
+ * return value accommodates all windows of FRAME respecting the values
  * of `window-min-height' (`window-min-width' if HORIZONTAL is non-nil).
  * With IGNORE non-nil the values of these variables are ignored.
  *
@@ -2614,8 +2614,8 @@ store_frame_param (struct frame *f, Lisp_Object prop, Lisp_Object val)
        }
     }
 
-  /* Check these parameters for circular dependeny.  This does not check
-     for interdependencies between these properties.  Hence you can
+  /* Check each parent-frame and delete-before parameter for a
+     circular dependency.  Do not check between parameters, so you can
      still create circular dependencies with different properties, for
      example a chain of frames F1->F2->...Fn such that F1 is an ancestor
      frame of Fn and thus cannot be deleted before Fn and a second chain
index ad3590dfa664de5aacd050d51730059acdcb9aab..1b63293fe55dfb3ce02de1fc04f60a5030fc6a30 100644 (file)
@@ -1540,9 +1540,9 @@ xg_set_no_focus_on_map (struct frame *f, Lisp_Object no_focus_on_map)
   if (FRAME_GTK_WIDGET (f))
     {
       GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
-      gboolean gno_focus_on_map = NILP (no_focus_on_map) ? TRUE : FALSE;
+      gboolean g_no_focus_on_map = NILP (no_focus_on_map) ? TRUE : FALSE;
 
-      gtk_window_set_focus_on_map (gwin, gno_focus_on_map);
+      gtk_window_set_focus_on_map (gwin, g_no_focus_on_map);
     }
   unblock_input ();
 }
@@ -1555,9 +1555,9 @@ xg_set_no_accept_focus (struct frame *f, Lisp_Object no_accept_focus)
   if (FRAME_GTK_WIDGET (f))
     {
       GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
-      gboolean gno_accept_focus = NILP (no_accept_focus) ? TRUE : FALSE;
+      gboolean g_no_accept_focus = NILP (no_accept_focus) ? TRUE : FALSE;
 
-      gtk_window_set_accept_focus (gwin, gno_accept_focus);
+      gtk_window_set_accept_focus (gwin, g_no_accept_focus);
     }
   unblock_input ();
 }
index 3257805cabbee48e2dcd459121dc31384f55efd6..e463391c74a220e96c7b1f108ed8b04a8d734f2d 100644 (file)
@@ -799,9 +799,9 @@ x_set_undecorated (struct frame *f, Lisp_Object new_value, Lisp_Object old_value
       hints.decorations = NILP (new_value) ? MWM_DECOR_ALL : 0;
 
       block_input ();
-      /* For some reason the third and fourth argument in the following
-        call must be identic: In the corresponding XGetWindowProperty
-        call in getMotifHints, xfwm has the third and seventh arg both
+      /* For some reason the third and fourth arguments in the following
+        call must be identical: In the corresponding XGetWindowProperty
+        call in getMotifHints, xfwm has the third and seventh args both
         display_info->atoms[MOTIF_WM_HINTS].  Obviously, YMMV.   */
       XChangeProperty (dpy, FRAME_OUTER_WINDOW (f), prop, prop, 32,
                       PropModeReplace, (unsigned char *) &hints,
@@ -3041,9 +3041,9 @@ x_window (struct frame *f, long window_prompting)
       hints.flags = MWM_HINTS_DECORATIONS;
       hints.decorations = 0;
 
-      /* For some reason the third and fourth argument in the following
-        call must be identic: In the corresponding XGetWindowProperty
-        call in getMotifHints, xfwm has the third and seventh arg both
+      /* For some reason the third and fourth arguments in the following
+        call must be identical: In the corresponding XGetWindowProperty
+        call in getMotifHints, xfwm has the third and seventh args both
         display_info->atoms[MOTIF_WM_HINTS].  Obviously, YMMV.   */
       XChangeProperty (dpy, FRAME_OUTER_WINDOW (f), prop, prop, 32,
                       PropModeReplace, (unsigned char *) &hints,
@@ -3201,9 +3201,9 @@ x_window (struct frame *f)
       hints.flags = MWM_HINTS_DECORATIONS;
       hints.decorations = 0;
 
-      /* For some reason the third and fourth argument in the following
-        call must be identic: In the corresponding XGetWindowProperty
-        call in getMotifHints, xfwm has the third and seventh arg both
+      /* For some reason the third and fourth arguments in the following
+        call must be identical: In the corresponding XGetWindowProperty
+        call in getMotifHints, xfwm has the third and seventh args both
         display_info->atoms[MOTIF_WM_HINTS].  Obviously, YMMV.   */
       XChangeProperty (dpy, FRAME_OUTER_WINDOW (f), prop, prop, 32,
                       PropModeReplace, (unsigned char *) &hints,