From 5588c569e915046c4ff5e4f7b9f05e7697147f26 Mon Sep 17 00:00:00 2001 From: 10sr <8.slashes@gmail.com> Date: Thu, 30 Jan 2020 01:47:19 +0900 Subject: [PATCH] Fix docstring --- emacs.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emacs.el b/emacs.el index a380cc1..2df3617 100644 --- a/emacs.el +++ b/emacs.el @@ -2581,7 +2581,7 @@ and search from projectile root (if projectile is available)." (define-key ctl-x-map "." 'my-rgrep-thing-at-point-projectile-root) (defun my-occur (regexp &optional region) - "My occur command to search REGEXP." + "My occur command to search REGEXP to search REGION." (interactive (list (read-string "List lines matching regexp: " (thing-at-point 'symbol t)))) (occur regexp nil region)) @@ -2593,7 +2593,7 @@ and search from projectile root (if projectile is available)." (define-key ctl-x-map "c" 'compile) (defun my-pushbullet-note (text &optional title) - "Push TEXT." + "Push TEXT with optional TITLE." (interactive "sText to Push: ") (pb/push-item '("") text "note" (or title "")))