Skip to content

Instantly share code, notes, and snippets.

@offby1
Created January 27, 2009 03:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save offby1/53144 to your computer and use it in GitHub Desktop.
Save offby1/53144 to your computer and use it in GitHub Desktop.
@@ -293,10 +295,12 @@
(define (reply fmt . args)
(let* ((response-target (*response-target*))
(for-whom (*for-whom*))
+ (master-prefix (if (is-master?) "*" ""))
(response-prefix (if (equal? response-target for-whom)
""
(format "~a: " for-whom))))
- (pm response-target "~a~a" response-prefix (apply format fmt args))))
+ (pm response-target "~a~a~a" master-prefix
+ response-prefix (apply format fmt args))))
(defverb (help ?what) "what tricks can I do?"
(let ([what (and ?what (string->symbol ?what))]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment