File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change
1
+ Tue Jul 27 07:05:04 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
2
+
3
+ * object.c (Init_Object): "===" calls rb_obj_equal() directly.
4
+ [ruby-list:39937]
5
+
1
6
Mon Jul 26 11:22:55 2004 GOTOU Yuuzou <gotoyuzo@notwork.org>
2
7
3
8
* lib/webrick/httputils.rb (WEBrick::HTTPUtils.escape): should
Original file line number Diff line number Diff line change 21
21
; ;; (setq interpreter-mode-alist (append '(("ruby" . ruby-mode))
22
22
; ;; interpreter-mode-alist))
23
23
; ;;
24
- ; ;; (2) set to road inf-ruby and set inf-ruby key definition in ruby-mode.
24
+ ; ;; (2) set to load inf-ruby and set inf-ruby key definition in ruby-mode.
25
25
; ;;
26
26
; ;; (autoload 'run-ruby "inf-ruby"
27
27
; ;; "Run an inferior Ruby process")
35
35
; ;; HISTORY
36
36
; ;; senda - 8 Apr 1998: Created.
37
37
; ;; $Log$
38
+ ; ;; Revision 1.6.2.1 2004/07/27 07:51:28 matz
39
+ ; ;; * object.c (Init_Object): "===" calls rb_obj_equal() directly.
40
+ ; ;; [ruby-list:39937]
41
+ ; ;;
38
42
; ;; Revision 1.6 2002/09/07 14:35:46 nobu
39
43
; ;; * misc/inf-ruby.el (inferior-ruby-error-regexp-alist): regexp
40
44
; ;; alist for error message from ruby.
41
- ; ;;
45
+ ; ;;
42
46
; ;; * misc/inf-ruby.el (inferior-ruby-mode): fixed for Emacs.
43
- ; ;;
47
+ ; ;;
44
48
; ;; * misc/inf-ruby.el (ruby-send-region): compilation-parse-errors
45
49
; ;; doesn't parse first line, so insert separators before each
46
50
; ;; evaluations.
47
- ; ;;
51
+ ; ;;
48
52
; ;; Revision 1.5 2002/08/19 10:05:47 nobu
49
53
; ;; * misc/inf-ruby.el (inf-ruby-keys): ruby-send-definition
50
54
; ;; conflicted with ruby-insert-end.
Original file line number Diff line number Diff line change @@ -2584,6 +2584,7 @@ Init_Object()
2584
2584
rb_define_method (rb_cSymbol , "to_s" , sym_to_s , 0 );
2585
2585
rb_define_method (rb_cSymbol , "id2name" , sym_to_s , 0 );
2586
2586
rb_define_method (rb_cSymbol , "to_sym" , sym_to_sym , 0 );
2587
+ rb_define_method (rb_cSymbol , "===" , rb_obj_equal , 1 );
2587
2588
2588
2589
rb_define_method (rb_cModule , "freeze" , rb_mod_freeze , 0 );
2589
2590
rb_define_method (rb_cModule , "===" , rb_mod_eqq , 1 );
You can’t perform that action at this time.
0 commit comments