branch: elpa/emacsql
commit e08094c78f7fcfe1f0d42b685f39cbbb2309ffcd
Author: Christopher Wellons <[email protected]>
Commit: Christopher Wellons <[email protected]>
More precise parsing.
---
emacsql.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/emacsql.el b/emacsql.el
index e8cf911048..22f3d1e3ff 100644
--- a/emacsql.el
+++ b/emacsql.el
@@ -175,7 +175,7 @@ buffer. This is for debugging purposes."
(let ((standard-input (current-buffer)))
(setf (point) (point-min))
(cl-loop until (looking-at "#")
- do (search-forward "=")
+ do (search-forward " = ")
for value = (read)
collect value into row
do (forward-char)