aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 1b02c60c618..8b700b0312a 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -27,11 +27,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
27#include "syntax.h" 27#include "syntax.h"
28#include "window.h" 28#include "window.h"
29 29
30#ifdef CHECK_FRAME_FONT
31#include "frame.h"
32#include "xterm.h"
33#endif
34
35/* Work around GCC bug 54561. */ 30/* Work around GCC bug 54561. */
36#if GNUC_PREREQ (4, 3, 0) 31#if GNUC_PREREQ (4, 3, 0)
37# pragma GCC diagnostic ignored "-Wclobbered" 32# pragma GCC diagnostic ignored "-Wclobbered"
@@ -439,16 +434,6 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
439 Lisp_Object result; 434 Lisp_Object result;
440 enum handlertype type; 435 enum handlertype type;
441 436
442#if 0 /* CHECK_FRAME_FONT */
443 {
444 struct frame *f = SELECTED_FRAME ();
445 if (FRAME_X_P (f)
446 && FRAME_FONT (f)->direction != 0
447 && FRAME_FONT (f)->direction != 1)
448 emacs_abort ();
449 }
450#endif
451
452 CHECK_STRING (bytestr); 437 CHECK_STRING (bytestr);
453 CHECK_VECTOR (vector); 438 CHECK_VECTOR (vector);
454 CHECK_NATNUM (maxdepth); 439 CHECK_NATNUM (maxdepth);