소스 검색

Merge branch 'maint'

Nicolas Goaziou 8 년 전
부모
커밋
1ac8e29605
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      lisp/org.el

+ 2 - 1
lisp/org.el

@@ -8911,7 +8911,8 @@ with the original repeater."
     (let* ((end (point))
 	   (template (buffer-substring beg end))
 	   (shift-n (and doshift (string-to-number (match-string 1 shift))))
-	   (shift-what (pcase (match-string 2 shift)
+	   (shift-what (pcase (and doshift (match-string 2 shift))
+			 (`nil nil)
 			 ("d" 'day)
 			 ("w" (setq shift-n (* 7 shift-n)) 'day)
 			 ("m" 'month)