From 58afee04d613dea1d6200b0262e88b7547a470d8 Mon Sep 17 00:00:00 2001 From: Matthias Maurberger Date: Sat, 4 May 2019 21:01:34 +0200 Subject: [PATCH 1/2] doc: Correct keybinding for Messages buffer --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 680be4452..4cf63cc6e 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ shoot off that bug report: If all else fails, [file that bug report][github:new-issue]! Please include the behavior you've observed, the behavior you expected, and any error messages or warnings logged to the \*Messages\* buffer (can be opened with SPC h -m or `M-x view-echo-area-messages`). +e or `M-x view-echo-area-messages`). It's a great help if you included a backtrace with errors, i.e. `M-x toggle-debug-on-error` then recreating the error(s). From 3873d52c8d99fd50939c9fa85bcbeb255330f71c Mon Sep 17 00:00:00 2001 From: Matthias Maurberger Date: Sat, 4 May 2019 21:03:59 +0200 Subject: [PATCH 2/2] lang/org: fix function description --- modules/lang/org/autoload/tables.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/org/autoload/tables.el b/modules/lang/org/autoload/tables.el index ffe162e51..aa1c375b3 100644 --- a/modules/lang/org/autoload/tables.el +++ b/modules/lang/org/autoload/tables.el @@ -29,7 +29,7 @@ re-align the table if necessary. (Necessary because org-mode has a ;;;###autoload (defun +org/table-insert-column-left () - "Insert a new column right of the current column." + "Insert a new column left of the current column." (interactive) (org-table-insert-column) (org-table-move-column-left))