[#4745] Win32: Ruby & APR; build problems for Ruby Subversion SWIG bindings — Erik Huelsmann <ehuels@...>

Having taken upon me the task to provide a Windows build for

24 messages 2005/04/20
[#4746] Re: Win32: Ruby & APR; build problems for Ruby Subversion SWIG bindings — Austin Ziegler <halostatue@...> 2005/04/20

On 4/20/05, Erik Huelsmann <ehuels@gmail.com> wrote:

[#4747] Re: Win32: Ruby & APR; build problems for Ruby Subversion SWIG bindings — Erik Huelsmann <ehuels@...> 2005/04/20

Hi Austin,

[#4762] Re: Win32: Ruby & APR; build problems for Ruby Subversion SWIG bindings — nobu.nokada@... 2005/04/24

Hi,

[#4783] Re: Win32: Ruby & APR; build problems for Ruby Subversion SWIG bindings — Erik Huelsmann <ehuels@...> 2005/04/25

On 4/24/05, nobu.nokada@softhome.net <nobu.nokada@softhome.net> wrote:

[#4787] Re: Win32: Ruby & APR; build problems for Ruby Subversion SWIG bindings — nobu.nokada@... 2005/04/25

Hi,

[#4794] Re: Win32: Ruby & APR; build problems for Ruby Subversion SWIG bindings — Erik Huelsmann <ehuels@...> 2005/04/25

> > > Ruby is just using AC_TYPE_UID_T. So, using typedef for them,

[#4751] Illegal regexp causes segfault — Andrew Walrond <andrew@...>

irb(main):058:0> a = /\[([^]]*)\]/

13 messages 2005/04/22

[PATCH] logger.rb

From: Thomas Leitner <thomas_leitner@...>
Date: 2005-04-08 19:33:59 UTC
List: ruby-core #4681
Fixed documentation and removed one useless line

--- /usr/lib/ruby/1.8/logger.rb 2005-01-26 02:25:47.000000000 +0100
+++ logger.rb   2005-04-07 12:16:22.202620928 +0200
@@ -204,23 +204,23 @@
   alias sev_threshold level
   alias sev_threshold= level=
 
-  # Returns +true+ iff the current severity level allows for the printing of
+  # Returns +true+ if the current severity level allows for the printing of
   # +DEBUG+ messages.
   def debug?; @level <= DEBUG; end

-  # Returns +true+ iff the current severity level allows for the printing of
+  # Returns +true+ if the current severity level allows for the printing of
   # +INFO+ messages.
   def info?; @level <= INFO; end
 
-  # Returns +true+ iff the current severity level allows for the printing of
+  # Returns +true+ if the current severity level allows for the printing of
   # +WARN+ messages.
   def warn?; @level <= WARN; end
 
-  # Returns +true+ iff the current severity level allows for the printing of
+  # Returns +true+ if the current severity level allows for the printing of
   # +ERROR+ messages.
   def error?; @level <= ERROR; end
 
-  # Returns +true+ iff the current severity level allows for the printing of
+  # Returns +true+ if the current severity level allows for the printing of
   # +FATAL+ messages.
   def fatal?; @level <= FATAL; end
 
@@ -251,7 +251,6 @@
     @progname = nil
     @level = DEBUG
     @datetime_format = nil
-    @logdev = nil
     if logdev
       @logdev = LogDevice.new(logdev, :shift_age => shift_age, :shift_size => shift_size)
     end


-- 
|\  Thomas Leitner  --  thomas [underscore] leitner [at] gmx [dot] at
|>
|/  "Life is what happens to you while you're busy making other plans"


In This Thread

Prev Next