summary refs log tree commit diff stats
path: root/lisp/acdw.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/acdw.el')
-rw-r--r--lisp/acdw.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/acdw.el b/lisp/acdw.el index 191cdfb..fdcca84 100644 --- a/lisp/acdw.el +++ b/lisp/acdw.el
@@ -288,6 +288,13 @@ always nil; this function is mostly intended for use in init."
288 :type '(repeat function) 288 :type '(repeat function)
289 :group 'applications) 289 :group 'applications)
290 290
291(defun +string-repeat (n str)
292 "Repeat STR N times."
293 (let ((r ""))
294 (dotimes (_ n)
295 (setq r (concat r str)))
296 r))
297
291(defun chat-disconnect () 298(defun chat-disconnect ()
292 "Disconnect from all chats." 299 "Disconnect from all chats."
293 (interactive) 300 (interactive)