Skip to content

Commit a7299da

Browse files
committed
Remove dead code clojure-char-at-point and clojure-char-before-point
These functions have been unused since the removal of clojure-mark-string and clojure-string-end in 2015.
1 parent 0758795 commit a7299da

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

clojure-mode.el

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2000,16 +2000,6 @@ nil."
20002000
(and hash (1- beg))
20012001
(and (not hash) beg))))))
20022002

2003-
(defun clojure-char-at-point ()
2004-
"Return the char at point or nil if at buffer end."
2005-
(when (not (= (point) (point-max)))
2006-
(buffer-substring-no-properties (point) (1+ (point)))))
2007-
2008-
(defun clojure-char-before-point ()
2009-
"Return the char before point or nil if at buffer beginning."
2010-
(when (not (= (point) (point-min)))
2011-
(buffer-substring-no-properties (point) (1- (point)))))
2012-
20132003
(defun clojure-toggle-keyword-string ()
20142004
"Convert the string or keyword at point to keyword or string."
20152005
(interactive)

0 commit comments

Comments
 (0)