public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-emacs/ocaml-mode/files: 50ocaml-mode-gentoo.el
@ 2007-10-23 13:15 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 3+ messages in thread
From: Ulrich Mueller (ulm) @ 2007-10-23 13:15 UTC (permalink / raw
  To: gentoo-commits

ulm         07/10/23 13:15:51

  Modified:             50ocaml-mode-gentoo.el
  Log:
  Make syntax highlighting work again.
  (Portage version: 2.1.3.15)

Revision  Changes    Path
1.4                  app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el?r1=1.3&r2=1.4

Index: 50ocaml-mode-gentoo.el
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- 50ocaml-mode-gentoo.el	12 May 2007 09:04:34 -0000	1.3
+++ 50ocaml-mode-gentoo.el	23 Oct 2007 13:15:50 -0000	1.4
@@ -5,4 +5,7 @@
 (add-to-list 'auto-mode-alist '("\\.ml[iylp]?\\'" . caml-mode))
 (autoload 'caml-mode "caml" "Major mode for editing Caml code." t)
 (autoload 'run-caml "inf-caml" "Run an inferior Caml process." t)
-;;(require 'caml-font)
+(autoload 'inferior-caml-mode-font-hook "caml-font")
+
+(eval-after-load "caml" '(require 'caml-font))
+(add-hook 'inferior-caml-mode-hooks 'inferior-caml-mode-font-hook)



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emacs/ocaml-mode/files: 50ocaml-mode-gentoo.el
@ 2007-10-29 13:32 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 3+ messages in thread
From: Ulrich Mueller (ulm) @ 2007-10-29 13:32 UTC (permalink / raw
  To: gentoo-commits

ulm         07/10/29 13:32:22

  Modified:             50ocaml-mode-gentoo.el
  Log:
  Autoload camldebug in site-init file, fixes bug #197405.
  (Portage version: 2.1.3.16)

Revision  Changes    Path
1.5                  app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el?r1=1.4&r2=1.5

Index: 50ocaml-mode-gentoo.el
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- 50ocaml-mode-gentoo.el	23 Oct 2007 13:15:50 -0000	1.4
+++ 50ocaml-mode-gentoo.el	29 Oct 2007 13:32:21 -0000	1.5
@@ -5,6 +5,8 @@
 (add-to-list 'auto-mode-alist '("\\.ml[iylp]?\\'" . caml-mode))
 (autoload 'caml-mode "caml" "Major mode for editing Caml code." t)
 (autoload 'run-caml "inf-caml" "Run an inferior Caml process." t)
+(autoload 'camldebug "camldebug"
+  "Run camldebug on program FILE in buffer *camldebug-FILE*." t)
 (autoload 'inferior-caml-mode-font-hook "caml-font")
 
 (eval-after-load "caml" '(require 'caml-font))



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emacs/ocaml-mode/files: 50ocaml-mode-gentoo.el
@ 2011-01-19 17:37 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 3+ messages in thread
From: Ulrich Mueller (ulm) @ 2011-01-19 17:37 UTC (permalink / raw
  To: gentoo-commits

ulm         11/01/19 17:37:03

  Modified:             50ocaml-mode-gentoo.el
  Log:
  Version bump. Remove intermediate version.
  
  (Portage version: 2.1.9.33/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el?r1=1.5&r2=1.6

Index: 50ocaml-mode-gentoo.el
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- 50ocaml-mode-gentoo.el	29 Oct 2007 13:32:21 -0000	1.5
+++ 50ocaml-mode-gentoo.el	19 Jan 2011 17:37:03 -0000	1.6
@@ -1,6 +1,3 @@
-
-;;; ocaml-mode site-lisp configuration
-
 (add-to-list 'load-path "@SITELISP@")
 (add-to-list 'auto-mode-alist '("\\.ml[iylp]?\\'" . caml-mode))
 (autoload 'caml-mode "caml" "Major mode for editing Caml code." t)






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-01-19 17:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-19 17:37 [gentoo-commits] gentoo-x86 commit in app-emacs/ocaml-mode/files: 50ocaml-mode-gentoo.el Ulrich Mueller (ulm)
  -- strict thread matches above, loose matches on Subject: below --
2007-10-29 13:32 Ulrich Mueller (ulm)
2007-10-23 13:15 Ulrich Mueller (ulm)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox