Smart compilation function.

Commit
2a8a3db92da90f7caf82285913ac384a62e11638
Author
Marius Peter <marius.peter@tutanota.com>
Author date
Committer
Marius Peter <marius.peter@tutanota.com>
Committer date
smart-documents.org
index 1d585986..01f2ccf6 100644..100644
@@ -1812,6 +1812,24 @@
1812 1812 (save-buffers-kill-terminal)))
1813 1813 #+END_SRC
1814 1814
1815 Added: ** Programming
1816 Added:
1817 Added: *** Smart compilation
1818 Added:
1819 Added: #+BEGIN_SRC emacs-lisp :tangle yes
1820 Added: (defun sd-smart-compilation
1821 Added: ()
1822 Added: "recompile if `compile-command` was modified, or prompt
1823 Added: for `compile-command`."
1824 Added: (interactive)
1825 Added: (if
1826 Added: (eq
1827 Added: (default-value 'compile-command)
1828 Added: compile-command)
1829 Added: (recompile)
1830 Added: (compile)))
1831 Added: #+END_SRC
1832 Added:
1815 1833
1816 1834 * Editing preferences
1817 1835