|
@@ -1,3 +1,4 @@
|
|
|
|
+
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;;;;;;;;;;;;;;;;;;;;; PHOTOGAL ;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;;;;;;;;;;;;;;;;;;;;; PHOTOGAL ;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; v1.0 ;;;;;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; v1.0 ;;;;;;
|
|
@@ -143,7 +144,8 @@ for all tags defined -- one function per tag."
|
|
(if (or tag-code-too-long tag-code-in-use)
|
|
(if (or tag-code-too-long tag-code-in-use)
|
|
(progn (message "tag code must be a single character and can't be already in use")
|
|
(progn (message "tag code must be a single character and can't be already in use")
|
|
(call-interactively 'photogal-add-tag))
|
|
(call-interactively 'photogal-add-tag))
|
|
- (photogal--add-tag new-tag new-tag-code))))
|
|
|
|
|
|
+ (photogal--add-tag new-tag new-tag-code)
|
|
|
|
+ (photogal-refresh-buffer))))
|
|
|
|
|
|
(defun photogal-delete-tag (tag-code)
|
|
(defun photogal-delete-tag (tag-code)
|
|
"Remove a tag from the library."
|
|
"Remove a tag from the library."
|
|
@@ -159,8 +161,7 @@ for all tags defined -- one function per tag."
|
|
(customize-save-variable
|
|
(customize-save-variable
|
|
'photogal/tags
|
|
'photogal/tags
|
|
(cons (cons new-tag-code escaped-str-tag) photogal/tags)))
|
|
(cons (cons new-tag-code escaped-str-tag) photogal/tags)))
|
|
- (photogal-generate-tag-commands)
|
|
|
|
- (photogal-refresh-buffer))
|
|
|
|
|
|
+ (photogal-generate-tag-commands))
|
|
|
|
|
|
(defun photogal-tag-code-in-use (tag-code)
|
|
(defun photogal-tag-code-in-use (tag-code)
|
|
(seq-contains-p
|
|
(seq-contains-p
|