From 1d216d3efb2aa2e0ca096bf39dc8b1f8f127cf1a Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 4 Aug 2019 09:51:52 +0200 Subject: [PATCH] Fixed fill-column setting. --- init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index 5993f10..d823d4a 100644 --- a/init.el +++ b/init.el @@ -1,5 +1,5 @@ ;;; init.el --- tastytea's Emacs init file. -;; Time-stamp: <2019-08-03T10:37:32+00:00> +;; Time-stamp: <2019-08-04T07:51:35+00:00> ;;; Commentary: ;; I am using this file with Emacs 26, but most of it will probably work with @@ -104,7 +104,7 @@ (initial-major-mode 'markdown-mode) ; and select mode. (require-final-newline t) ; Always add newline at end of file. (recentf-max-saved-items 40) ; Keep this number of buffers in history. - (fill-column . 80) ; Documents are 80 chars wide by default. + (fill-column 80) ; Documents are 80 chars wide by default. :config (defalias 'yes-or-no-p 'y-or-n-p) ; Just type y/n instead of yes/no.