Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ install: prepare
$(PYSETUP) install

prepare:
$(PPPP) Pymacs.py.in pppp.rst.in pymacs.el.in pymacs.rst.in contrib tests
EMACS="$(EMACS)" PYTHON="$(PYTHON)" \
$(PPPP) Pymacs.py.in pppp.rst.in pymacs.el.in pymacs.rst.in contrib tests

clean: clean-debug
rm -rf build* contrib/rebox/build
Expand All @@ -34,7 +35,8 @@ clean-debug:
rm -f tests/debug-protocol tests/debug-signals

pppp.pdf: pppp.rst.in
$(PPPP) pppp.rst.in
EMACS="$(EMACS)" PYTHON="$(PYTHON)" \
$(PPPP) pppp.rst.in
rm -rf tmp-pdf
mkdir tmp-pdf
$(RST2LATEX) --use-latex-toc --input-encoding=UTF-8 \
Expand All @@ -45,7 +47,8 @@ pppp.pdf: pppp.rst.in
rm -rf tmp-pdf

pymacs.pdf: pymacs.rst.in
$(PPPP) pymacs.rst.in
EMACS="$(EMACS)" PYTHON="$(PYTHON)" \
$(PPPP) pymacs.rst.in
rm -rf tmp-pdf
mkdir tmp-pdf
$(RST2LATEX) --use-latex-toc --input-encoding=UTF-8 \
Expand Down
2 changes: 1 addition & 1 deletion pymacs.el.in
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ When this variable is nil, strings are transmitted as copies, and the
Python side thus has no way for modifying the original Lisp strings.
This variable is ignored whenever `forget-mutability' is set.")

(defvar pymacs-timeout-at-start 30
(defvar pymacs-timeout-at-start 60
"Maximum reasonable time, in seconds, for starting the Pymacs helper.
A machine should be pretty loaded before one needs to increment this.")

Expand Down