Add comment about PAC-based-naming

This commit is contained in:
Kashish Sharma 2018-08-30 02:45:07 +05:30
parent aac855b7cb
commit 1282e35842
1 changed files with 15 additions and 0 deletions

View File

@ -58,6 +58,21 @@
(match target
("main" "")
(_ (string-append "-" target)))
;; The upside of this is, you
;; don't accidentally send
;; someone the
;; point-and-click-enabled
;; version of the file.
;;
;; The downside is, it's easy to
;; have file-pacON.pdf open
;; during editing, while the
;; script is actually compiling
;; to file.pdf (or vice-versa),
;; and wonder why your score
;; isn't updating.
(match pac
("" "-pacON")
(_ ""))