Start renaming to puml-mode to avoid name clashes

This commit is contained in:
Carlo Sciolla 2015-07-13 23:04:33 +02:00
parent a66997c3d1
commit 1d1080838a
1 changed files with 11 additions and 10 deletions

View File

@ -1,8 +1,9 @@
;;; plantuml-mode.el --- Major mode for plantuml ;;; puml-mode.el --- Major mode for PlantUML
;; Author: Zhang Weize (zwz) ;; Author: Zhang Weize (zwz)
;; Maintainer: Carlo Sciolla (skuro)
;; Keywords: uml ascii ;; Keywords: uml ascii
;; Version: 0.2 ;; Version: 0.3
;; You can redistribute this program and/or modify it under the terms ;; You can redistribute this program and/or modify it under the terms
;; of the GNU General Public License as published by the Free Software ;; of the GNU General Public License as published by the Free Software
@ -23,13 +24,14 @@
;; using a simple and intuitive language. ;; using a simple and intuitive language.
;;; HISTORY ;;; HISTORY
;; version 0.3, 2015-06-13 Compatibility with Emacs 24.x
;; version 0.2, 2010-09-20 Initialize the keywords from the -language output of plantuml.jar instead of the hard-coded way. ;; version 0.2, 2010-09-20 Initialize the keywords from the -language output of plantuml.jar instead of the hard-coded way.
;; version 0.1, 2010-08-25 First version ;; version 0.1, 2010-08-25 First version
;;; Code:
(require 'thingatpt) (require 'thingatpt)
(defgroup plantuml-mode nil (defgroup puml-mode nil
"Major mode for editing plantuml file." "Major mode for editing plantuml file."
:group 'languages) :group 'languages)
@ -168,7 +170,7 @@
(add-to-list 'auto-mode-alist '("\\.plu$" . plantuml-mode)) (add-to-list 'auto-mode-alist '("\\.plu$" . plantuml-mode))
;;;###autoload ;;;###autoload
(defun plantuml-mode () (defun puml-mode ()
"Major mode for plantuml. "Major mode for plantuml.
Shortcuts Command Name Shortcuts Command Name
@ -178,8 +180,8 @@ Shortcuts Command Name
(kill-all-local-variables) (kill-all-local-variables)
;; (python-mode) ; for indentation ;; (python-mode) ; for indentation
(setq major-mode 'plantuml-mode (setq major-mode 'puml-mode
mode-name "plantuml") mode-name "puml")
(set-syntax-table plantuml-mode-syntax-table) (set-syntax-table plantuml-mode-syntax-table)
(use-local-map plantuml-mode-map) (use-local-map plantuml-mode-map)
@ -188,6 +190,5 @@ Shortcuts Command Name
(run-mode-hooks 'plantuml-mode-hook)) (run-mode-hooks 'plantuml-mode-hook))
(provide 'plantuml-mode) (provide 'puml-mode)
;;; plantuml-mode.el ends here ;;; puml-mode.el ends here