@@ -429,7 +429,7 @@ Skip blank lines and comment lines. Return list."
429
429
'x509-hex-string-face )))
430
430
" OpenSSL x509 highlighting." )
431
431
432
- (defun x509-mode-- kill-buffer ()
432
+ (defun x509-mode-kill-buffer ()
433
433
" Kill current buffer."
434
434
(interactive )
435
435
(set-buffer-modified-p nil )
@@ -446,9 +446,9 @@ Skip blank lines and comment lines. Return list."
446
446
:interactive nil
447
447
:group 'x509
448
448
(set (make-local-variable 'font-lock-defaults ) '(x509-font-lock-keywords t ))
449
- (keymap-set x509-mode-map " q" #'x509-mode-- kill-buffer )
450
- (keymap-set x509-mode-map " t" #'x509-- toggle-mode )
451
- (keymap-set x509-mode-map " e" #'x509-- edit-params )
449
+ (keymap-set x509-mode-map " q" #'x509-mode-kill-buffer )
450
+ (keymap-set x509-mode-map " t" #'x509-toggle-mode )
451
+ (keymap-set x509-mode-map " e" #'x509-edit-params )
452
452
(x509--mark-browse-http-links)
453
453
(x509--mark-browse-oid))
454
454
@@ -598,7 +598,6 @@ variables. NO-HOOKS also ensures that process output isn't
598
598
decoded, i.e. data is inserted into buffer as binary.
599
599
600
600
Return output buffer."
601
- (interactive )
602
601
(let* ((buf
603
602
(or output-buf
604
603
(generate-new-buffer
@@ -718,7 +717,7 @@ Switch to resulting buffer and return it."
718
717
(" asn1parse" 'x509--viewasn1-history )
719
718
(_ nil )))
720
719
721
- (defun x509-- toggle-mode (&optional edit )
720
+ (defun x509-toggle-mode (&optional edit )
722
721
" Toggle between asn1-mode and `x509-mode' .
723
722
724
723
If EDIT is non-'nil', edit current command arguments and redisplay."
@@ -741,10 +740,10 @@ If EDIT is non-'nil', edit current command arguments and redisplay."
741
740
x509--shadow-buffer
742
741
(current-buffer )))))
743
742
744
- (defun x509-- edit-params ()
743
+ (defun x509-edit-params ()
745
744
" Edit command parameters in current buffer."
746
745
(interactive )
747
- (x509-- toggle-mode t ))
746
+ (x509-toggle-mode t ))
748
747
749
748
; ; ---------------------------------------------------------------------------
750
749
(defvar x509--viewcert-history nil
@@ -1078,19 +1077,19 @@ to get it right but it can get confusing."
1078
1077
(current-buffer ))
1079
1078
(x509--asn1-update-mode-line)))
1080
1079
1081
- (defun x509-- asn1-offset-down ()
1080
+ (defun x509-asn1-offset-down ()
1082
1081
" Add -offset N argument to current asn1 command line and redisplay.
1083
1082
Offset is calculated from offset on current line."
1084
1083
(interactive )
1085
1084
(x509--asn1-offset-strparse " -offset" ))
1086
1085
1087
- (defun x509-- asn1-strparse ()
1086
+ (defun x509-asn1-strparse ()
1088
1087
" Add -strparse N argument to current asn1 command line and redisplay.
1089
1088
Offset is calculated from offset on current line."
1090
1089
(interactive )
1091
1090
(x509--asn1-offset-strparse " -strparse" ))
1092
1091
1093
- (defun x509-- asn1-offset-up ()
1092
+ (defun x509-asn1-offset-up ()
1094
1093
" Pop offset and redisplay."
1095
1094
(interactive )
1096
1095
(when (and (boundp 'x509--x509-asn1-mode-offset-stack )
@@ -1419,12 +1418,12 @@ The ASN.1 header uses `x509-asn1-hexl-header' face and the value uses the
1419
1418
:group 'x509
1420
1419
(set
1421
1420
(make-local-variable 'font-lock-defaults ) '(x509-asn1-font-lock-keywords t ))
1422
- (keymap-set x509-asn1-mode-map " q" #'x509-mode-- kill-buffer )
1423
- (keymap-set x509-asn1-mode-map " t" #'x509-- toggle-mode )
1424
- (keymap-set x509-asn1-mode-map " e" #'x509-- edit-params )
1425
- (keymap-set x509-asn1-mode-map " d" #'x509-- asn1-offset-down )
1426
- (keymap-set x509-asn1-mode-map " s" #'x509-- asn1-strparse )
1427
- (keymap-set x509-asn1-mode-map " u" #'x509-- asn1-offset-up )
1421
+ (keymap-set x509-asn1-mode-map " q" #'x509-mode-kill-buffer )
1422
+ (keymap-set x509-asn1-mode-map " t" #'x509-toggle-mode )
1423
+ (keymap-set x509-asn1-mode-map " e" #'x509-edit-params )
1424
+ (keymap-set x509-asn1-mode-map " d" #'x509-asn1-offset-down )
1425
+ (keymap-set x509-asn1-mode-map " s" #'x509-asn1-strparse )
1426
+ (keymap-set x509-asn1-mode-map " u" #'x509-asn1-offset-up )
1428
1427
(keymap-set x509-asn1-mode-map " x" #'x509-asn1-toggle-hexl )
1429
1428
(x509--mark-browse-http-links)
1430
1429
(x509--mark-browse-oid))
0 commit comments