Staging
v0.5.1
Revision a7891718e1293dc9afa1dacb77a59f1895611f75 authored by Barry Warsaw on 01 August 1996, 15:53:09 UTC, committed by Barry Warsaw on 01 August 1996, 15:53:09 UTC
right thing.

(py-comment-region): let-bind comment-start to "## " so commented
regions get transformed into non-indenting comment lines.

(py-compute-region): Implement modification to rule for recognizing
"indenting comment lines".
1 parent e5b7b85
Raw File
Makefile
all:
		@echo Nothing to make in this directory.

clean:
		find . '(' -name '*.pyc' -o -name '*.fdc' \
			-o -name core -o -name '*~' \
			-o -name '[@,#]*' -o -name '*.old' \
			-o -name '*.orig' -o -name '*.rej' \
			-o -name '*.bak' ')' \
			-print -exec rm -f {} ';'

clobber:	clean
back to top