diff options
author | Arun Isaac | 2020-03-13 21:17:42 +0530 |
---|---|---|
committer | Arun Isaac | 2020-03-13 21:17:42 +0530 |
commit | c3c4a17b09f695ed5474918747238ffc70cde5d9 (patch) | |
tree | eca541b759761a1e79c87f149633c66cf26268db /ennu.el | |
parent | 761a84bda8a43d18c149213a93c18d88891da916 (diff) | |
download | ennum-c3c4a17b09f695ed5474918747238ffc70cde5d9.tar.gz ennum-c3c4a17b09f695ed5474918747238ffc70cde5d9.tar.lz ennum-c3c4a17b09f695ed5474918747238ffc70cde5d9.zip |
Provide ennu web server stop command.
* ennu.el (ennu-server-start): New function.
Diffstat (limited to 'ennu.el')
-rw-r--r-- | ennu.el | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -492,4 +492,9 @@ as keys. Keys are compared using `equal'." (_ (httpd-serve-root proc httpd-root (concat uri-path ".html") request))))) (httpd-start)) +(defun ennu-server-stop () + (interactive) + (httpd-stop) + (message "Ennu web server stopped")) + (provide 'ennu) |