Mercurial > emacs
annotate lispintro/makefile.w32-in @ 59580:f43d0816e9c3
* keyboard.c (READABLE_EVENTS_DO_TIMERS_NOW)
(READABLE_EVENTS_FILTER_EVENTS)
(READABLE_EVENTS_IGNORE_SQUEEZABLES): New flags for readable_events.
get_filtered_input_pending, readable_filtered_events): Removed.
(tracking_off): Call readable_events and get_input_pending with
flag READABLE_EVENTS_DO_TIMERS_NOW.
(readable_events): Move code from old readable_filtered_events here,
but check new READABLE_EVENTS_* in argument flags instead of previous
two boolean arguments do_timers_now and filter_events.
If we are doing mouse tracking and the mouse moved, return only if
READABLE_EVENTS_IGNORE_SQUEEZABLES is not set in flags.
(swallow_events): Call get_input_pending with flag
READABLE_EVENTS_DO_TIMERS_NOW.
(get_input_pending): Move code from old get_filtered_input_pending
here. Replace boolean arguments do_timers_now, filter_events with
flags, and pass flags to readable_events. Document new
READABLE_EVENTS_* flags.
(detect_input_pending_ignore_squeezables): New function.
(detect_input_pending_run_timers): Call get_input_pending with flag
READABLE_EVENTS_DO_TIMERS_NOW.
(Finput_pending_p): Call get_input_pending with flags
READABLE_EVENTS_DO_TIMERS_NOW and READABLE_EVENTS_FILTER_EVENTS.
* dispnew.c (update_window, update_frame_1): Replace calls to
detect_input_pending with detect_input_pending_ignore_squeezables
so that redisplay is not paused if the event queue contains only
mouse movements.
* lisp.h: Declare detect_input_pending_ignore_squeezables.
author | Jan Djärv <jan.h.d@swipnet.se> |
---|---|
date | Sun, 16 Jan 2005 09:17:02 +0000 |
parents | bb6720f21c54 |
children | 23a17af379b1 4c90ffeb71c5 |
rev | line source |
---|---|
55092
9077e3f7cd49
Add "-*- makefile -*-" mode tag.
Juanma Barranquero <lekktu@gmail.com>
parents:
54200
diff
changeset
|
1 #### -*- Makefile -*- for the Emacs Lisp Introduction manual. |
52423 | 2 |
56026
bb6720f21c54
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-396
Miles Bader <miles@gnu.org>
parents:
55092
diff
changeset
|
3 # Copyright (C) 2003, 2004 Free Software Foundation, Inc. |
52423 | 4 |
5 # This file is part of GNU Emacs. | |
6 | |
7 # GNU Emacs is free software; you can redistribute it and/or modify | |
8 # it under the terms of the GNU General Public License as published by | |
9 # the Free Software Foundation; either version 2, or (at your option) | |
10 # any later version. | |
11 | |
12 # GNU Emacs is distributed in the hope that it will be useful, | |
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 # GNU General Public License for more details. | |
16 | |
17 # You should have received a copy of the GNU General Public License | |
18 # along with GNU Emacs; see the file COPYING. If not, write to | |
19 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 # Boston, MA 02111-1307, USA. | |
21 | |
22 srcdir = . | |
23 | |
24 infodir = $(srcdir)/../info | |
25 | |
26 INFO_SOURCES = $(srcdir)/emacs-lisp-intro.texi | |
27 # The file name eintr must fit within 5 characters, to allow for | |
28 # -NN extensions to fit into DOS 8+3 limits without clashing | |
29 INFO_TARGETS = $(infodir)/eintr | |
30 DVI_TARGETS = emacs-lisp-intro.dvi | |
31 | |
32 MAKEINFO = makeinfo | |
33 INSTALL_INFO = install-info | |
34 TEXI2DVI = texi2dvi | |
35 DVIPS = dvips | |
36 ENVADD = $(srcdir)\..\nt\envadd.bat "TEXINPUTS=$(srcdir);$(TEXINPUTS)" \ | |
37 "MAKEINFO=$(MAKEINFO) -I$(srcdir)" /C | |
38 | |
39 .SUFFIXES: .dvi .ps .texi | |
40 | |
41 info: $(INFO_TARGETS) | |
42 $(INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS) | |
43 | |
44 dvi: $(DVI_TARGETS) | |
45 | |
46 $(infodir)/eintr: $(INFO_SOURCES) | |
47 $(MAKEINFO) -o $@ $(srcdir)/emacs-lisp-intro.texi | |
48 | |
49 emacs-lisp-intro.dvi: $(INFO_SOURCES) | |
50 $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-lisp-intro.texi | |
51 | |
52 emacs-lisp-intro.html: $(INFO_SOURCES) | |
53 $(MAKEINFO) --html -o $@ $(srcdir)/emacs-lisp-intro.texi | |
54 | |
55 .dvi.ps: | |
56 $(DVIPS) $< -o $@ | |
57 | |
58 mostlyclean: | |
54200
b0293635c42b
* man/makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
Juanma Barranquero <lekktu@gmail.com>
parents:
52428
diff
changeset
|
59 - $(DEL) *.log *.cp *.fn *.ky *.pg *.vr *.tp |
52423 | 60 |
61 clean: mostlyclean | |
54200
b0293635c42b
* man/makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
Juanma Barranquero <lekktu@gmail.com>
parents:
52428
diff
changeset
|
62 - $(DEL) *.dvi $(infodir)/eintr* |
52423 | 63 |
64 distclean: clean | |
65 | |
66 maintainer-clean: distclean | |
54200
b0293635c42b
* man/makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
Juanma Barranquero <lekktu@gmail.com>
parents:
52428
diff
changeset
|
67 - $(DEL) *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc |
52423 | 68 |
69 # Tell versions [3.59,3.63) of GNU make to not export all variables. | |
70 # Otherwise a system limit (for SysV at least) may be exceeded. | |
71 .NOEXPORT: |