File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -57,16 +57,16 @@ buffer. This is for debugging purposes."
57
57
(cl-defmethod emacsql-send-message
58
58
((connection emacsql-sqlite-builtin-connection) message)
59
59
(condition-case err
60
- (let ((include-header emacsql-include-header))
60
+ (let ((headerp emacsql-include-header))
61
61
(mapcar (lambda (row )
62
- (prog1 ( mapcan ( lambda ( col )
63
- ( cond (include-header ( list col) )
64
- (( null col) ( list nil ) )
65
- (( equal col " " ) ( list " " ))
66
- (( numberp col) (list col ))
67
- ((emacsql-sqlite-read-column col)) ))
68
- row )
69
- ( setq include-header nil )))
62
+ (cond
63
+ (headerp ( setq headerp nil ) row )
64
+ (( mapcan ( lambda ( col )
65
+ ( cond (( null col) ( list nil ))
66
+ (( equal col " " ) (list " " ))
67
+ (( numberp col) ( list col))
68
+ ((emacsql-sqlite-read-column col))) )
69
+ row) )))
70
70
(sqlite-select (oref connection handle) message nil
71
71
(and emacsql-include-header 'full ))))
72
72
((sqlite-error sqlite-locked-error)
You can’t perform that action at this time.
0 commit comments