diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2014-09-04 09:14:05 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-09-04 09:14:05 -0700 |
commit | 9bc6bb24e58ecd0a53b7b64008f66d1b3e77a043 (patch) | |
tree | 1afa592454befd1fbbd623ae0b706f96e851b7b9 | |
parent | 1f69089d359f5c2c04bffc352b16810d40f79a36 (diff) |
Remove stray semicolons.
-rw-r--r-- | src/gtkutil.c | 2 | ||||
-rw-r--r-- | src/syntax.c | 2 | ||||
-rw-r--r-- | src/xdisp.c | 6 | ||||
-rw-r--r-- | test/indent/octave.m | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/src/gtkutil.c b/src/gtkutil.c index 7e7d68d80d..62f2c1b068 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c @@ -1324,7 +1324,7 @@ x_wm_set_size_hint (struct frame *f, long int flags, bool user_position) 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 diff --git a/src/syntax.c b/src/syntax.c index df8800e90b..69391bac9e 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -1231,7 +1231,7 @@ DEFUN ("internal-describe-syntax-value", Finternal_describe_syntax_value, 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); diff --git a/src/xdisp.c b/src/xdisp.c index 93eea2c2b3..a22519abe4 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -2538,7 +2538,7 @@ remember_mouse_glyph (struct frame *f, int gx, int gy, NativeRectangle *rect) 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 @@ handle_single_display_spec (struct it *it, Lisp_Object spec, Lisp_Object object, 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 @@ Value is the new character position of point. */) 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; diff --git a/test/indent/octave.m b/test/indent/octave.m index 8aab5ec03e..a7041462f7 100644 --- a/test/indent/octave.m +++ b/test/indent/octave.m @@ -1982,7 +1982,7 @@ function [out1, out2] = installed_packages (local_list, global_list) 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); |