Remove CHECK_FRAME_FONT cruft from bytecode.c
* src/bytecode.c [CHECK_FRAME_FONT]: Do not include frame.h, xterm.h. Remove some old ‘#if 0’ code.
This commit is contained in:
parent
3e71e4379c
commit
60dd094a8c
1 changed files with 0 additions and 15 deletions
|
@ -27,11 +27,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
#include "syntax.h"
|
||||
#include "window.h"
|
||||
|
||||
#ifdef CHECK_FRAME_FONT
|
||||
#include "frame.h"
|
||||
#include "xterm.h"
|
||||
#endif
|
||||
|
||||
/* Work around GCC bug 54561. */
|
||||
#if GNUC_PREREQ (4, 3, 0)
|
||||
# pragma GCC diagnostic ignored "-Wclobbered"
|
||||
|
@ -439,16 +434,6 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
|
|||
Lisp_Object result;
|
||||
enum handlertype type;
|
||||
|
||||
#if 0 /* CHECK_FRAME_FONT */
|
||||
{
|
||||
struct frame *f = SELECTED_FRAME ();
|
||||
if (FRAME_X_P (f)
|
||||
&& FRAME_FONT (f)->direction != 0
|
||||
&& FRAME_FONT (f)->direction != 1)
|
||||
emacs_abort ();
|
||||
}
|
||||
#endif
|
||||
|
||||
CHECK_STRING (bytestr);
|
||||
CHECK_VECTOR (vector);
|
||||
CHECK_NATNUM (maxdepth);
|
||||
|
|
Loading…
Add table
Reference in a new issue