branch: externals/vlf
commit 1ac1eece404f05ff175eb832b697c63b2d24130a
Author: Andrey Kotlarski <[email protected]>
Commit: Andrey Kotlarski <[email protected]>

    Turn vlfi-get-file-size to function.
---
 vlfi.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vlfi.el b/vlfi.el
index 70cc6b3..2c42013 100644
--- a/vlfi.el
+++ b/vlfi.el
@@ -200,9 +200,9 @@ with the prefix argument DECREASE it is halved."
   "Update the current buffer name."
   (rename-buffer (vlfi-format-buffer-name) t))
 
-(defmacro vlfi-get-file-size (file)
+(defun vlfi-get-file-size (file)
   "Get size in bytes of FILE."
-  `(nth 7 (file-attributes ,file)))
+  (nth 7 (file-attributes file)))
 
 (defun vlfi-insert-file (&optional from-end)
   "Insert first chunk of current file contents in current buffer.

Reply via email to