branch: elpa/casual
commit 3bfdb3bd373c5807320a7c366d03be07e4a61f77
Merge: 80dcd656c1 aeda59563c
Author: Charles Choi <[email protected]>
Commit: GitHub <[email protected]>

    Merge pull request #482 from kickingvegas/464-fix-elisp-page-separators
    
    Fix Elisp page separators
---
 lisp/casual-csv-settings.el        | 3 +--
 lisp/casual-csv-utils.el           | 3 +--
 lisp/casual-dired-utils.el         | 3 +--
 lisp/casual-ediff-utils.el         | 2 --
 lisp/casual-eww-utils.el           | 2 --
 lisp/casual-org-settings.el        | 4 +---
 lisp/casual-org-utils.el           | 7 -------
 tests/test-casual-editkit-utils.el | 1 -
 8 files changed, 4 insertions(+), 21 deletions(-)

diff --git a/lisp/casual-csv-settings.el b/lisp/casual-csv-settings.el
index 544f2ebba6..81898eeeaf 100644
--- a/lisp/casual-csv-settings.el
+++ b/lisp/casual-csv-settings.el
@@ -66,8 +66,7 @@
    (casual-lib-quit-all)])
 
 
-;; -------------------------------------------------------------------
-;; Functions
+;;; Functions
 
 (defun casual-csv--customize-group ()
   "Customize csv group."
diff --git a/lisp/casual-csv-utils.el b/lisp/casual-csv-utils.el
index 67c9bc2801..bdda207aee 100644
--- a/lisp/casual-csv-utils.el
+++ b/lisp/casual-csv-utils.el
@@ -81,8 +81,7 @@ plain ASCII-range string."
   (call-interactively #'csv-align-fields))
 
 
-;; -------------------------------------------------------------------
-;; Transients
+;;; Transients
 (transient-define-prefix casual-csv-align-tmenu ()
   ["Align"
    :description (lambda () (format
diff --git a/lisp/casual-dired-utils.el b/lisp/casual-dired-utils.el
index 11de78dec6..ec504d6f05 100644
--- a/lisp/casual-dired-utils.el
+++ b/lisp/casual-dired-utils.el
@@ -74,8 +74,7 @@ ASCII-range string."
     nil))
 
 
-;; -------------------------------------------------------------------
-;; Transients
+;;; Transients
 
 (transient-define-prefix casual-dired-utils-tmenu ()
   ["Utils - Marked Files or File under Point"
diff --git a/lisp/casual-ediff-utils.el b/lisp/casual-ediff-utils.el
index 6bba265152..f347b8eed6 100644
--- a/lisp/casual-ediff-utils.el
+++ b/lisp/casual-ediff-utils.el
@@ -59,7 +59,6 @@ plain ASCII-range string."
   (casual-lib-unicode-db-get key casual-ediff-unicode-db))
 
 
-;; -------------------------------------------------------------------
 ;;; Format
 
 (defun casual-ediff--buffer-description (ebuf slot &optional extend)
@@ -82,7 +81,6 @@ plain ASCII-range string."
       (format "%s: %s" slot filename))))
 
 
-;; -------------------------------------------------------------------
 ;;; Ediff Functions
 (defun casual-ediff-info ()
   "Open Info for Ediff."
diff --git a/lisp/casual-eww-utils.el b/lisp/casual-eww-utils.el
index 1af8b8b1ff..37fc135185 100644
--- a/lisp/casual-eww-utils.el
+++ b/lisp/casual-eww-utils.el
@@ -66,7 +66,6 @@ plain ASCII-range string."
   (interactive) (info "(eww) Top"))
 
 
-;; -------------------------------------------------------------------
 ;;; Commands
 (defun casual-eww-forward-paragraph-link ()
   "Move point to first link in next paragraph."
@@ -85,7 +84,6 @@ plain ASCII-range string."
     (shr-next-link)))
 
 
-;; -------------------------------------------------------------------
 ;;; Transients
 
 (transient-define-prefix casual-eww-display-tmenu ()
diff --git a/lisp/casual-org-settings.el b/lisp/casual-org-settings.el
index 49ac99894c..163e475d31 100644
--- a/lisp/casual-org-settings.el
+++ b/lisp/casual-org-settings.el
@@ -25,8 +25,7 @@
 (require 'casual-lib)
 
 
-;; -------------------------------------------------------------------
-;; Customize Functions
+;;; Customize Functions
 
 ;; Groups
 (defun casual-org--customize-group ()
@@ -150,7 +149,6 @@ Always choose love."
   (describe-function #'casual-org-about-org))
 
 
-;; -------------------------------------------------------------------
 ;; Transients
 (transient-define-prefix casual-org-settings-tmenu ()
   "Casual Org settings menu."
diff --git a/lisp/casual-org-utils.el b/lisp/casual-org-utils.el
index 18aebbc0d9..f2f7f436b4 100644
--- a/lisp/casual-org-utils.el
+++ b/lisp/casual-org-utils.el
@@ -144,7 +144,6 @@ level of the Org manual is opened."
   (derived-mode-p 'org-mode))
 
 
-;; -------------------------------------------------------------------
 ;; Org List Functions
 
 (defun casual-org-checkbox-in-progress ()
@@ -167,7 +166,6 @@ which is done with `org-ctrl-c-ctrl-c'."
   (org-insert-item t))
 
 
-;; -------------------------------------------------------------------
 ;; Org Block & Table Functions
 
 (defun casual-org-assign-name (name)
@@ -241,7 +239,6 @@ This command should only be invoked in an empty table cell."
     (casual-org-table--insert-column-alignment fn)))
 
 
-;; -------------------------------------------------------------------
 ;; Org Section Descriptions
 
 (defun casual-org--block-description ()
@@ -356,7 +353,6 @@ This command should only be invoked in an empty table cell."
       "Org Item")))
 
 
-;; -------------------------------------------------------------------
 ;; Org Table Functions
 
 (defun casual-org-table--cell-at-point ()
@@ -550,7 +546,6 @@ See `casual-org-table--range' for more on RANGE object."
     (kill-new value)))
 
 
-;; -------------------------------------------------------------------
 ;; fedit functions
 
 (defun casual-org-table-fedit-first-row-reference ()
@@ -589,7 +584,6 @@ See `casual-org-table--range' for more on RANGE object."
   (insert "@I..@II"))
 
 
-;; -------------------------------------------------------------------
 ;; Image Preview
 
 (defun casual-org-toggle-images ()
@@ -603,7 +597,6 @@ Org 9.8."
     (org-link-preview 11)))
 
 
-;; -------------------------------------------------------------------
 ;; Transients
 
 ;; Transient Groups
diff --git a/tests/test-casual-editkit-utils.el 
b/tests/test-casual-editkit-utils.el
index 5dd098a706..1065aceaeb 100644
--- a/tests/test-casual-editkit-utils.el
+++ b/tests/test-casual-editkit-utils.el
@@ -867,6 +867,5 @@
   ;;     (casualt-editkit-breakdown tmpfile)))
   )
 
-;; -------
 (provide 'test-casual-editkit-utils)
 ;;; test-casual-editkit-utils.el ends here

Reply via email to