From d4b522bedf15092780b9226802db0aff06c2ac7d Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Sat, 20 Sep 2008 11:39:33 -0700 Subject: [PATCH] misc/make_umid: change docs, make elisp code easier to grab --- misc/make_umid | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/misc/make_umid b/misc/make_umid index b4f222f6..c8b39dfe 100644 --- a/misc/make_umid +++ b/misc/make_umid @@ -20,17 +20,20 @@ easier to write classifier functions for the incident-gatherer. """ -#The following elisp code may be useful: - -# (defun insert-umid () -# (interactive) -# (insert ", umid=\"") -# (call-process "make_umid" nil t) -# (delete-char -1) -# (insert "\"") -# ) -# (global-set-key (kbd "C-\`") 'insert-umid) - +''' +The following elisp code may be useful: + + (defun insert-umid () + (interactive) + (insert ", umid=\"") + (call-process "make_umid" nil t) + (delete-char -1) + (insert "\"") + ) + (global-set-key (kbd "C-\`") 'insert-umid) +''' + +# ' # emacs gets confused by the odd number of single-quotes there import os, base64, sys -- 2.45.2