diff options
| author | Gerd Moellmann | 1999-09-14 15:30:15 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-09-14 15:30:15 +0000 |
| commit | 46d74a69434029005ff9972fbbcaa9724fbf2376 (patch) | |
| tree | aeb5b1bb99d20087ae29b56d11b95c7cf1af96df | |
| parent | 94b342cea5e49654451a91eef2468890f2b864ed (diff) | |
| download | emacs-46d74a69434029005ff9972fbbcaa9724fbf2376.tar.gz emacs-46d74a69434029005ff9972fbbcaa9724fbf2376.zip | |
(lw_separator_p): Check for new-style separators
differently.
| -rw-r--r-- | lwlib/lwlib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lwlib/lwlib.c b/lwlib/lwlib.c index 9939a5dcc96..f2e564137fe 100644 --- a/lwlib/lwlib.c +++ b/lwlib/lwlib.c | |||
| @@ -1454,7 +1454,8 @@ lw_separator_p (label, type, motif_p) | |||
| 1454 | } | 1454 | } |
| 1455 | } | 1455 | } |
| 1456 | else if (strlen (label) > 3 | 1456 | else if (strlen (label) > 3 |
| 1457 | && bcmp (label, "--", 2) == 0) | 1457 | && bcmp (label, "--", 2) == 0 |
| 1458 | && label[2] != '-') | ||
| 1458 | { | 1459 | { |
| 1459 | /* Alternative, more Emacs-style names. */ | 1460 | /* Alternative, more Emacs-style names. */ |
| 1460 | static struct separator_table | 1461 | static struct separator_table |