diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2012-09-30 01:48:31 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2012-09-30 01:48:31 +0200 |
commit | 1c105ac47a5e28eb36c6507cbe421f15bf2ded2b (patch) | |
tree | d842334f6606e1f7168f9a077e5fb53d8e5c6f5f /elisp | |
parent | 8d472a3c0683400c73f88e1c913b76a25c02ce89 (diff) | |
download | geiser-1c105ac47a5e28eb36c6507cbe421f15bf2ded2b.tar.gz geiser-1c105ac47a5e28eb36c6507cbe421f15bf2ded2b.tar.bz2 |
Compilation warning
Diffstat (limited to 'elisp')
-rw-r--r-- | elisp/geiser-table.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elisp/geiser-table.el b/elisp/geiser-table.el index e4d4f43..11d94bb 100644 --- a/elisp/geiser-table.el +++ b/elisp/geiser-table.el @@ -1,6 +1,6 @@ ;;; geiser-table.el -- table creation -;; Copyright (C) 2009, 2010 Jose Antonio Ortega Ruiz +;; Copyright (C) 2009, 2010, 2012 Jose Antonio Ortega Ruiz ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the Modified BSD License. You should @@ -41,7 +41,7 @@ (let ((fill-column width)) (insert str) (fill-region (point-min) (point-max)) - (mapcar '(lambda (s) (geiser-table--pad-str s width)) + (mapcar (lambda (s) (geiser-table--pad-str s width)) (split-string (buffer-string) "\n")))))) (defun geiser-table--pad-row (row) |