diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/bytecode.c | 2 | ||||
| -rw-r--r-- | src/menu.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index e2d8ab706c7..be39a81c5e9 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -46,7 +46,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 46 | indirect threaded, using GCC's computed goto extension. This code, | 46 | indirect threaded, using GCC's computed goto extension. This code, |
| 47 | as currently implemented, is incompatible with BYTE_CODE_SAFE and | 47 | as currently implemented, is incompatible with BYTE_CODE_SAFE and |
| 48 | BYTE_CODE_METER. */ | 48 | BYTE_CODE_METER. */ |
| 49 | #if (defined __GNUC__ && !defined __STRICT_ANSI__ \ | 49 | #if (defined __GNUC__ && !defined __STRICT_ANSI__ && !defined __CHKP__ \ |
| 50 | && !BYTE_CODE_SAFE && !defined BYTE_CODE_METER) | 50 | && !BYTE_CODE_SAFE && !defined BYTE_CODE_METER) |
| 51 | #define BYTE_CODE_THREADED | 51 | #define BYTE_CODE_THREADED |
| 52 | #endif | 52 | #endif |
diff --git a/src/menu.c b/src/menu.c index 638810b36f8..80709679513 100644 --- a/src/menu.c +++ b/src/menu.c | |||
| @@ -1540,7 +1540,7 @@ for instance using the window manager, then this produces a quit and | |||
| 1540 | 1540 | ||
| 1541 | /* Note that xw_popup_dialog can call menu code, so | 1541 | /* Note that xw_popup_dialog can call menu code, so |
| 1542 | Vmenu_updating_frame should be set (Bug#17891). */ | 1542 | Vmenu_updating_frame should be set (Bug#17891). */ |
| 1543 | eassert (f && FRAME_LIVE_P (f)); | 1543 | eassume (f && FRAME_LIVE_P (f)); |
| 1544 | XSETFRAME (Vmenu_updating_frame, f); | 1544 | XSETFRAME (Vmenu_updating_frame, f); |
| 1545 | 1545 | ||
| 1546 | /* Force a redisplay before showing the dialog. If a frame is created | 1546 | /* Force a redisplay before showing the dialog. If a frame is created |