emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r117819: Remove stray semicolons.


From: Paul Eggert
Subject: [Emacs-diffs] trunk r117819: Remove stray semicolons.
Date: Thu, 04 Sep 2014 16:14:10 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117819
revision-id: address@hidden
parent: address@hidden
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Thu 2014-09-04 09:14:05 -0700
message:
  Remove stray semicolons.
modified:
  src/gtkutil.c                  gtkutil.c-20091113204419-o5vbwnq5f7feedwu-2527
  src/syntax.c                   syntax.c-20091113204419-o5vbwnq5f7feedwu-180
  src/xdisp.c                    xdisp.c-20091113204419-o5vbwnq5f7feedwu-240
  test/indent/octave.m           octave.m-20100830202136-aixgxrga4de1k393-1
=== modified file 'src/gtkutil.c'
--- a/src/gtkutil.c     2014-08-02 13:32:40 +0000
+++ b/src/gtkutil.c     2014-09-04 16:14:05 +0000
@@ -1324,7 +1324,7 @@
 
   size_hints.base_width = base_width;
   size_hints.base_height = base_height;
-  size_hints.min_width  = base_width + min_cols * FRAME_COLUMN_WIDTH (f);;
+  size_hints.min_width  = base_width + min_cols * FRAME_COLUMN_WIDTH (f);
   size_hints.min_height = base_height + min_rows * FRAME_LINE_HEIGHT (f);
 
   /* These currently have a one to one mapping with the X values, but I

=== modified file 'src/syntax.c'
--- a/src/syntax.c      2014-09-03 04:21:40 +0000
+++ b/src/syntax.c      2014-09-04 16:14:05 +0000
@@ -1231,7 +1231,7 @@
   syntax_code = XINT (first) & INT_MAX;
   code = syntax_code & 0377;
   start1 = SYNTAX_FLAGS_COMSTART_FIRST (syntax_code);
-  start2 = SYNTAX_FLAGS_COMSTART_SECOND (syntax_code);;
+  start2 = SYNTAX_FLAGS_COMSTART_SECOND (syntax_code);
   end1 = SYNTAX_FLAGS_COMEND_FIRST (syntax_code);
   end2 = SYNTAX_FLAGS_COMEND_SECOND (syntax_code);
   prefix = SYNTAX_FLAGS_PREFIX (syntax_code);

=== modified file 'src/xdisp.c'
--- a/src/xdisp.c       2014-09-03 04:21:40 +0000
+++ b/src/xdisp.c       2014-09-04 16:14:05 +0000
@@ -2538,7 +2538,7 @@
       gy = 0;
       /* The bottom divider prevails. */
       height = WINDOW_PIXEL_HEIGHT (w) - WINDOW_BOTTOM_DIVIDER_WIDTH (w);
-      goto add_edge;;
+      goto add_edge;
 
     case ON_BOTTOM_DIVIDER:
       gx = 0;
@@ -5120,7 +5120,7 @@
 
       if (it)
        {
-         int face_id = lookup_basic_face (it->f, DEFAULT_FACE_ID);;
+         int face_id = lookup_basic_face (it->f, DEFAULT_FACE_ID);
 
          if (CONSP (XCDR (XCDR (spec))))
            {
@@ -20988,7 +20988,7 @@
                  if ((gpt->resolved_level - row->reversed_p) % 2 == 0)
                    new_pos += (row->reversed_p ? -dir : dir);
                  else
-                   new_pos -= (row->reversed_p ? -dir : dir);;
+                   new_pos -= (row->reversed_p ? -dir : dir);
                }
              else if (BUFFERP (g->object))
                new_pos = g->charpos;

=== modified file 'test/indent/octave.m'
--- a/test/indent/octave.m      2014-05-27 14:28:07 +0000
+++ b/test/indent/octave.m      2014-09-04 16:14:05 +0000
@@ -1982,7 +1982,7 @@
   endif
 
   h1 = postpad (h1, max_name_length + 1, " ");
-  h2 = postpad (h2, max_version_length, " ");;
+  h2 = postpad (h2, max_version_length, " ");
 
   ## Print a header.
   header = sprintf("%s | %s | %s\n", h1, h2, h3);


reply via email to

[Prev in Thread] Current Thread [Next in Thread]