소스 검색

org-mew.el: fixed the docstring of `org-mew-open'.

Bastien Guerry 17 년 전
부모
커밋
ef5c3a2a66
2개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 0
      ChangeLog
  2. 1 1
      lisp/org-mew.el

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+2008-04-09  Bastien Guerry  <bzg@altern.org>
+
+	* lisp/org-mew.el (org-mew-open): Fixed the docstring.
+
 2008-04-08  Carsten Dominik  <dominik@science.uva.nl>
 
 	* lisp/org-agenda.el (org-agenda-weekend-days): New variable.

+ 1 - 1
lisp/org-mew.el

@@ -44,7 +44,7 @@
 (add-hook 'org-store-link-functions 'org-mew-store-link)
 
 (defun org-mew-open (mew-link)
-  "Visit the message MSG-NUMBER in FOLDER."
+  "Visit the message targetted at by MEW-LINK."
   (when (string-match "\\(+.*\\)+\\+\\([0-9]+\\)" mew-link)
     (let ((folder (match-string 1 mew-link))
 	  (msg-num (match-string 2 mew-link)))