Replaced default-FOO variables with (setq-default FOO ...) as they were deleted in v26.1.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Tue, 07 May 2019 00:44:54 +0300
changeset 1585 3d8b6068a940
parent 1584 51e7636bcf35
child 1586 6aff838af671
Replaced default-FOO variables with (setq-default FOO ...) as they were deleted in v26.1.
.emacs-my
--- a/.emacs-my	Mon Apr 29 16:49:32 2019 +0300
+++ b/.emacs-my	Tue May 07 00:44:54 2019 +0300
@@ -400,15 +400,14 @@
 ;; For `mode-line-format' default value was used.
 (setq-default header-line-format nil)
 
-(setq default-left-fringe-width nil)
-(setq default-right-fringe-width nil)
-(setq default-left-margin-width nil)
-(setq default-right-margin-width nil)
+(setq-default left-fringe-width nil)
+(setq-default right-fringe-width nil)
+(setq-default left-margin-width nil)
+(setq-default right-margin-width nil)
 
 (if (< emacs-major-version 24)
     (setq default-truncate-lines nil)
-  (setq truncate-lines nil)
-  )
+  (setq-default truncate-lines nil))
 (setq truncate-partial-width-windows nil)
 
 (setq large-file-warning-threshold (* 12 1000 1000)) ; Greater then 10 MiB in order to open logs without warnings.
@@ -667,8 +666,8 @@
 
 (eval-when 'compile (require 'whitespace))
 
-(setq default-indicate-empty-lines t)
-(setq default-indicate-buffer-boundaries 'left)
+(setq-default indicate-empty-lines t)
+(setq-default indicate-buffer-boundaries 'left)
 
 ;; (setq-default show-trailing-whitespace t)