diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-20 14:06:47 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-20 14:06:47 -0400 |
commit | e032e9cca0fbf16d95fbdda9f5d2fabb7748b497 (patch) | |
tree | 927684d9d6f4e007f98cdf887e0753629bd49694 | |
parent | Enhance scrolling behavior (diff) | |
download | mmosmacs-e032e9cca0fbf16d95fbdda9f5d2fabb7748b497.tar.gz mmosmacs-e032e9cca0fbf16d95fbdda9f5d2fabb7748b497.tar.bz2 mmosmacs-e032e9cca0fbf16d95fbdda9f5d2fabb7748b497.zip |
Fix mismatched parentheses
-rw-r--r-- | init.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -103,7 +103,7 @@ | |||
103 | (setq scroll-margin 2) | 103 | (setq scroll-margin 2) |
104 | 104 | ||
105 | ;; Make mouse scroll smoother | 105 | ;; Make mouse scroll smoother |
106 | (setq mouse-wheel-scroll-amount '(2)) | 106 | (setq mouse-wheel-scroll-amount '(2) |
107 | mouse-wheel-progressive-speed nil | 107 | mouse-wheel-progressive-speed nil |
108 | mouse-wheel-follow-mouse t) | 108 | mouse-wheel-follow-mouse t) |
109 | 109 | ||
@@ -120,6 +120,7 @@ | |||
120 | 120 | ||
121 | 121 | ||
122 | 122 | ||
123 | |||
123 | ;; --------------------------------------------------------------------- | 124 | ;; --------------------------------------------------------------------- |
124 | ;;; File Management | 125 | ;;; File Management |
125 | ;; ---------------- | 126 | ;; ---------------- |