diff options
author | Yuchen Pei <id@ypei.org> | 2025-01-28 07:36:31 +1100 |
---|---|---|
committer | Yuchen Pei <id@ypei.org> | 2025-01-28 07:36:31 +1100 |
commit | 7ccd8ff06b50008ad0602c6652caebd4c4674a69 (patch) | |
tree | 4700adfdd8ee7cd51c0d55bffa7638d49ee3c5ff /exitter.el | |
parent | 36551754f548954d83af723d227dc7d14fd57d60 (diff) |
Diffstat (limited to 'exitter.el')
-rw-r--r-- | exitter.el | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -583,7 +583,14 @@ Including ancestors and descendants, if any." (if .quoted (format "\n\n----\n%s----" (replace-regexp-in-string - "^." " \\&" (exitter-format-post .quoted.post 1))) + "^." " \\&" + (if (stringp .quoted) + (message "Quoted post is a plain string: %s\n" + .quoted) + ;; We can't use .quoted.post here because + ;; for some reason it is evaluated even if + ;; the "if" branch is entered. + (exitter-format-post (alist-get 'post .quoted) 1)))) "") .reply_count .quote_count |