diff options
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/ob-sql.el | 3 | ||||
-rw-r--r-- | lisp/org/ol-bbdb.el | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/lisp/org/ob-sql.el b/lisp/org/ob-sql.el index 7c359b988d3..30d352cf494 100644 --- a/lisp/org/ob-sql.el +++ b/lisp/org/ob-sql.el @@ -164,7 +164,8 @@ SQL Server on Windows and Linux platform." " ")) (defun org-babel-sql-dbstring-vertica (host port user password database) - "Make Vertica command line args for database connection. Pass nil to omit that arg." + "Make Vertica command line args for database connection. +Pass nil to omit that arg." (mapconcat #'identity (delq nil (list (when host (format "-h %s" host)) diff --git a/lisp/org/ol-bbdb.el b/lisp/org/ol-bbdb.el index 73627b901fa..444bde37cd8 100644 --- a/lisp/org/ol-bbdb.el +++ b/lisp/org/ol-bbdb.el @@ -431,7 +431,7 @@ variable to be globally bound." ;;; to override the 7-day default. (defun org-bbdb-date-list (d n) - "Return a list of dates in (m d y) format from the given date D to n-1 days hence." + "Return list of dates in (m d y) format from the given date D to n-1 days hence." (let ((abs (calendar-absolute-from-gregorian d))) (mapcar (lambda (i) (calendar-gregorian-from-absolute (+ abs i))) (number-sequence 0 (1- n))))) |