srecode.el 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ;;; srecode.el --- Semantic buffer evaluator.
  2. ;;; Copyright (C) 2005, 2007-2012 Free Software Foundation, Inc.
  3. ;; Author: Eric M. Ludlam <zappo@gnu.org>
  4. ;; Keywords: codegeneration
  5. ;; Version: 1.0pre7
  6. ;; This file is part of GNU Emacs.
  7. ;; GNU Emacs is free software: you can redistribute it and/or modify
  8. ;; it under the terms of the GNU General Public License as published by
  9. ;; the Free Software Foundation, either version 3 of the License, or
  10. ;; (at your option) any later version.
  11. ;; GNU Emacs is distributed in the hope that it will be useful,
  12. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ;; GNU General Public License for more details.
  15. ;; You should have received a copy of the GNU General Public License
  16. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  17. ;;; Commentary:
  18. ;;
  19. ;; Semantic does the job of converting source code into useful tag
  20. ;; information. The set of `semantic-format-tag' functions has one
  21. ;; function that will create a prototype of a tag, which has severe
  22. ;; issues of complexity (in the format tag file itself) and inaccuracy
  23. ;; (for the purpose of C++ code.)
  24. ;;
  25. ;; Contemplation of the simplistic problem within the scope of
  26. ;; semantic showed that the solution was more complex than could
  27. ;; possibly be handled in semantic/format.el. Semantic Recode, or
  28. ;; srecode is a rich API for generating code out of semantic tags, or
  29. ;; recoding the tags.
  30. ;;
  31. ;; See the srecode manual for specific details.
  32. (require 'eieio)
  33. (require 'mode-local)
  34. (load "srecode/loaddefs" nil 'nomessage)
  35. (defvar srecode-version "1.0"
  36. "Current version of the Semantic Recoder.")
  37. ;;; Code:
  38. (defgroup srecode nil
  39. "Semantic Recoder."
  40. :group 'extensions
  41. :group 'tools)
  42. (provide 'srecode)
  43. ;;; srecode.el ends here