|
@@ -15728,9 +15728,11 @@ strings."
|
|
|
(push (cons "TODO" (org-match-string-no-properties 2)) props)))
|
|
|
(when specific (throw 'exit props)))
|
|
|
(when (or (not specific) (string= specific "PRIORITY"))
|
|
|
- (when (looking-at org-priority-regexp)
|
|
|
- (push (cons "PRIORITY" (org-match-string-no-properties 2))
|
|
|
- props))
|
|
|
+ (push (cons "PRIORITY"
|
|
|
+ (if (looking-at org-priority-regexp)
|
|
|
+ (org-match-string-no-properties 2)
|
|
|
+ (char-to-string org-default-priority)))
|
|
|
+ props)
|
|
|
(when specific (throw 'exit props)))
|
|
|
(when (or (not specific) (string= specific "FILE"))
|
|
|
(push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
|