summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Kaludercic <philip.kaludercic@fau.de>2023-07-21 07:47:21 +0000
committerPhilip Kaludercic <philip.kaludercic@fau.de>2023-07-21 07:47:21 +0000
commitf466280172d294d8d8bd2ab804b60d94e39e5a73 (patch)
treed5490ffb2a3ff0a2eaa62a3d099a871c20fda141
parenteca9ef1a1adc3caddfe83b624338fc828d344854 (diff)
Mark 'do-at-point--actions-type' as internal
-rw-r--r--do-at-point.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/do-at-point.el b/do-at-point.el
index 2bb1e6d..958ace8 100644
--- a/do-at-point.el
+++ b/do-at-point.el
@@ -5,7 +5,7 @@
;; Author: Philip Kaludercic <philipk@posteo.net>
;; Maintainer: Philip Kaludercic <philipk@posteo.net>
;; URL: https://wwwcip.cs.fau.de/~oj14ozun/src+etc/do-at-point.el
-;; Version: $Id: do-at-point.el,v 1.26 2023/07/20 15:25:26 oj14ozun Exp oj14ozun $
+;; Version: $Id: do-at-point.el,v 1.27 2023/07/21 07:44:32 oj14ozun Exp oj14ozun $
;; Package-Version: 1
;; Package-Requires: ((emacs "26.1"))
;; Keywords: convenience
@@ -63,7 +63,7 @@
"Generic context-sensitive action dispatcher."
:group 'convenience)
-(defconst do-at-point-actions-type
+(defconst do-at-point--actions-type
'(alist :value-type
(alist :value-type
(choice
@@ -132,13 +132,13 @@ does not require any actions to be associated with it, if it just
serves as a specific kind of region worth selecting. The order
of element in the list correspond to the order in which
`do-at-point' will prompt the user for possible things at point."
- :type do-at-point-actions-type)
+ :type do-at-point--actions-type)
(defcustom do-at-point-user-actions '()
"Custom association of things and their respective actions.
Refer to the user option `do-at-point-actions' for details on the
structure of the values of this user option."
- :type do-at-point-actions-type)
+ :type do-at-point--actions-type)
(defcustom do-at-point-quick-bindings t
"Non-nil means that quick bindings are enabled.