summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2012-01-02 20:33:32 +0100
committerChristian Neukirchen <chneukirchen@gmail.com>2012-01-02 20:33:32 +0100
commitd35ee0f4dbf7aafe3e48f6c8979fab898255e0dd (patch)
treef0bf01460097dcfba85028c44c786df1ce2b6360
parented1db3e8056d50779e8a826405205bd5c56f1365 (diff)
downloadtrivium-d35ee0f4dbf7aafe3e48f6c8979fab898255e0dd.tar.gz
trivium-d35ee0f4dbf7aafe3e48f6c8979fab898255e0dd.tar.xz
trivium-d35ee0f4dbf7aafe3e48f6c8979fab898255e0dd.zip
Remove SJIS-tag from BlueCloth regexps for Ruby 1.9
-rw-r--r--vendor/bluecloth.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/bluecloth.rb b/vendor/bluecloth.rb
index 55e5174..862ec50 100644
--- a/vendor/bluecloth.rb
+++ b/vendor/bluecloth.rb
@@ -1029,7 +1029,7 @@ class BlueCloth < String
 			)?				# title is optional
 		  \)
 		)
-	  }xs #"
+	  }x #"
 
 
 	# Reference-style images
@@ -1040,7 +1040,7 @@ class BlueCloth < String
 			(?:\n[ ]*)?		# One optional newline + spaces
 			\[ (.*?) \]		# id = $3
 		)
-	  }xs
+	  }x
 
 	### Turn image markup into image tags.
 	def transform_images( str, rs )