aboutsummaryrefslogtreecommitdiffstats
path: root/elisp
diff options
context:
space:
mode:
authorOscar Najera <hi@oscarnajera.com>2025-01-09 02:05:25 +0100
committerOscar Najera <hi@oscarnajera.com>2025-01-09 02:05:25 +0100
commit3554b25321024aacf39e22651064cf4396cff39f (patch)
tree5243ced2fd5c09aaf620243ae5cbc2640e650ccc /elisp
parent97db30ab8ff3e44965c533936151f9be755cc5eb (diff)
downloaddotfiles-master.tar.gz
dotfiles-master.tar.bz2
dotfiles-master.zip
cmk custom query correctly set csv separatorHEADmaster
Diffstat (limited to 'elisp')
-rw-r--r--elisp/cmk.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/elisp/cmk.el b/elisp/cmk.el
index 52462e7..4df85c2 100644
--- a/elisp/cmk.el
+++ b/elisp/cmk.el
@@ -165,9 +165,7 @@ Default is \"%Y-%m-%d %H:%M\"."
(kill-buffer)
(let ((cmk (cmk-livestatus-query new-query)))
(switch-to-buffer (process-buffer cmk))
- (setq csv-separators '(";")
- csv-separator-regexp "[;]"
- csv-separator-chars '(59))
+ (csv-set-separator ?\;)
(csv-align-mode)
(setq-local cmk-livestatus-query new-query))))))
(switch-to-buffer edit-buffer)))