We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5108c16 commit 601b3a5Copy full SHA for 601b3a5
emacsql.el
@@ -378,14 +378,10 @@ Each column must be a plain symbol, no expressions allowed here."
378
(sql-mode)
379
(with-no-warnings ;; autoloaded by previous line
380
(sql-highlight-sqlite-keywords))
381
- (if (and (fboundp 'font-lock-flush)
382
- (fboundp 'font-lock-ensure))
383
- (save-restriction
384
- (widen)
385
- (font-lock-flush)
386
- (font-lock-ensure))
387
- (with-no-warnings
388
- (font-lock-fontify-buffer)))
+ (save-restriction
+ (widen)
+ (font-lock-flush)
+ (font-lock-ensure))
389
(emacsql--indent)
390
(buffer-string))))
391
(with-current-buffer (get-buffer-create emacsql-show-buffer-name)
0 commit comments