emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[ELPA-diffs] /srv/bzr/emacs/elpa r151: 2011-10-18 Eric Schulte <address@


From: Eric Schulte
Subject: [ELPA-diffs] /srv/bzr/emacs/elpa r151: 2011-10-18 Eric Schulte <address@hidden>
Date: Tue, 18 Oct 2011 17:05:32 -0600
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 151
committer: Eric Schulte <address@hidden>
branch nick: elpa
timestamp: Tue 2011-10-18 17:05:32 -0600
message:
  2011-10-18 Eric Schulte <address@hidden>
  
  * shen-mode.el: Updating commentary to point to newer official shen website.
    (shen-mode-map): No longer inheriting functionality from c-mode.
modified:
  packages/shen-mode/shen-mode.el
=== modified file 'packages/shen-mode/shen-mode.el'
--- a/packages/shen-mode/shen-mode.el   2011-10-08 20:07:28 +0000
+++ b/packages/shen-mode/shen-mode.el   2011-10-18 23:05:32 +0000
@@ -27,12 +27,10 @@
 ;; A minor mode for editing shen source code.  Shen is a modern lisp
 ;; dialect with support for functional and declarative programming,
 ;; pattern matching and a very powerful type system.  See the
-;; following for more information on Shen.
-;; http://www.lambdassociates.org/specification/shen_1.8.htm
+;; following for more information on Shen. www.shenlanguage.org
 
 ;;; Code:
 (require 'lisp-mode)
-(require 'cc-mode)
 (require 'imenu)
 
 (defcustom shen-mode-hook '(turn-on-eldoc-mode)
@@ -43,11 +41,6 @@
 (defvar shen-mode-map
   (let ((map (make-sparse-keymap)))
     (set-keymap-parent map lisp-mode-shared-map)
-    (substitute-key-definition 'indent-new-comment-line
-                               'c-indent-new-comment-line
-                               map global-map)
-    (substitute-key-definition 'fill-paragraph 'c-fill-paragraph
-                               map global-map)
     map)
   "Currently just inherits from `lisp-mode-shared-map'.")
 
@@ -422,6 +415,7 @@
      (comment-column . 32)
      (parse-sexp-ignore-comments . t)
      (comment-use-global-state . nil)
+     (comment-multi-line . t)
      (eldoc-documentation-function . shen-mode-eldoc)
      (imenu-case-fold-search . t)
      (imenu-generic-expression . ,shen-imenu-generic-expression)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]