aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-03-18 23:08:02 +0000
committerRichard M. Stallman1995-03-18 23:08:02 +0000
commit6b1bbc46418524228070d0330faed217c9ba1622 (patch)
tree782f38143d43f23bd108b5e3dafe246bb81debf2 /src
parentfb65091fbccf4bacb39a96c52f0f1d7235acd67b (diff)
downloademacs-6b1bbc46418524228070d0330faed217c9ba1622.tar.gz
emacs-6b1bbc46418524228070d0330faed217c9ba1622.zip
(display_menu_bar): Just one space between menu items.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index e6b4021e1fd..f9e8491ca4e 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -2928,10 +2928,10 @@ display_menu_bar (w)
2928 XSTRING (string)->data, 2928 XSTRING (string)->data,
2929 XSTRING (string)->size, 2929 XSTRING (string)->size,
2930 hpos, 0, 0, hpos, maxendcol); 2930 hpos, 0, 0, hpos, maxendcol);
2931 /* Put a gap of 3 spaces between items. */ 2931 /* Put a space between items. */
2932 if (hpos < maxendcol) 2932 if (hpos < maxendcol)
2933 { 2933 {
2934 int hpos1 = hpos + 3; 2934 int hpos1 = hpos + 1;
2935 hpos = display_string (w, vpos, "", 0, hpos, 0, 0, 2935 hpos = display_string (w, vpos, "", 0, hpos, 0, 0,
2936 min (hpos1, maxendcol), maxendcol); 2936 min (hpos1, maxendcol), maxendcol);
2937 } 2937 }