branch: externals/phps-mode commit ebe8fb9a3637bbeb1276957274285f9b7cf0fbae Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@cvj.se>
Removed debug-on-signal in automation scripts --- Makefile | 4 ++-- admin/phps-mode-automation.el | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 2171637e79..351bc27cba 100644 --- a/Makefile +++ b/Makefile @@ -10,11 +10,11 @@ clean: .PHONY: parser parser: - $(EMACS_CMD) -L ~/.emacs.d/elpa/parser-generator-0.1.6/ -l phps-mode-lexer.el -l admin/phps-mode-automation.el -eval "(progn (require 'parser-generator-lr-export)(setq debug-on-signal t)(setq debug-on-error t)(phps-mode-automation))" + $(EMACS_CMD) -L ~/.emacs.d/elpa/parser-generator-0.1.6/ -l phps-mode-lexer.el -l admin/phps-mode-automation.el -eval "(progn (require 'parser-generator-lr-export)(setq debug-on-error t)(phps-mode-automation))" .PHONY: parser-resumed parser-resumed: - $(EMACS_CMD) -L ~/.emacs.d/elpa/parser-generator-0.1.6/ -l phps-mode-lexer.el -l admin/phps-mode-automation.el -l resume.el -eval "(progn (require 'parser-generator-lr-export)(setq debug-on-signal t)(setq debug-on-error t)(phps-mode-automation))" + $(EMACS_CMD) -L ~/.emacs.d/elpa/parser-generator-0.1.6/ -l phps-mode-lexer.el -l admin/phps-mode-automation.el -l resume.el -eval "(progn (require 'parser-generator-lr-export)(setq debug-on-error t)(phps-mode-automation))" .PHONY: compile compile: diff --git a/admin/phps-mode-automation.el b/admin/phps-mode-automation.el index c73e783949..1743de4824 100644 --- a/admin/phps-mode-automation.el +++ b/admin/phps-mode-automation.el @@ -9,7 +9,7 @@ ;; ;; This does not work if some variables are byte-compiled therefore we delete byte-compiled files in `make parser &> output.txt' command, follow progress with `tail -f output.txt' ;; -;; For some reason the grammar file can't be downloaded non-interactively, in that case try to run the code `(progn (require 'parser-generator-lr-export)(setq debug-on-signal t)(setq debug-on-error t)(phps-mode-automation))' in a active Emacs session and quit when file has been downloaded and the restart the process from terminal. +;; For some reason the grammar file can't be downloaded non-interactively, in that case try to run the code `(progn (require 'parser-generator-lr-export)(setq debug-on-error t)(phps-mode-automation))' in a active Emacs session and quit when file has been downloaded and the restart the process from terminal. ;; ;; If generation fails for some reason, to extract Emacs-Lisp data to a separate file run `cat output.txt | grep -F "-resume" - > resume.el' ;; and then to resume use command: `make parser-resumed &> output.txt'