~ubuntu-branches/ubuntu/trusty/ruby1.9/trusty

« back to all changes in this revision

Viewing changes to ext/tk/lib/tk/texttag.rb

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2008-01-24 11:42:29 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080124114229-jw2f87rdxlq6gp11
Tags: 1.9.0.0-2ubuntu1
* Merge from debian unstable, remaining changes:
  - Robustify check for target_os, fixing build failure on lpia.

Show diffs side-by-side

added added

removed removed

Lines of Context:
225
225
    self
226
226
  end
227
227
end
 
228
TktTag = TkTextTag
228
229
 
229
230
class TkTextNamedTag<TkTextTag
230
231
  def self.new(parent, name, *args)
271
272
    @t._addtag id, self
272
273
  end
273
274
end
 
275
TktNamedTag = TkTextNamedTag
274
276
 
275
277
class TkTextTagSel<TkTextNamedTag
276
278
  def self.new(parent, *args)
277
279
    super(parent, 'sel', *args)
278
280
  end
279
281
end
 
282
TktTagSel = TkTextTagSel