tree: checkdoc

This commit is contained in:
Jeremy Baxter 2024-07-23 11:02:20 +12:00
parent 0836d2efd4
commit 615f0e4ca5
5 changed files with 23 additions and 18 deletions

View file

@ -22,14 +22,19 @@
;; You should have received a copy of the GNU General Public License
;; along with enotify.el. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; enotify.el provides `enotify', a command for connecting to an IRC
;; server, joining a channel, sending a message, and then leaving.
;;; Code:
(defvar enotify-buffer "*enotify*"
"Name of the enotify process buffer")
"Name of the `enotify' process buffer.")
(defvar enotify-proc "enotify-process"
"Name of the enotify socket process")
"Name of the `enotify' socket process.")
(defvar enotify-realname "enotify-client"
"enotify's IRC realname that shows up in /whois")
"IRC realname for `enotify' that shows up in /whois.")
(defun enotify-send-string (proc string)
(process-send-string proc (concat string "\r\n")))