Module:No globals: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

21 May 2021

1 April 2020

16 November 2019

10 May 2019

13 March 2019

8 January 2019

8 November 2018

24 June 2018

30 April 2018

1 February 2018

4 August 2017

29 July 2017

1 March 2017

25 August 2015

29 October 2014

  • curprev 16:4816:48, 29 October 2014mediawikiwiki>Paladox 307 bytes 0 Created page with "local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('Tried to read nil global ' .. tostring(k), 2) end return nil end function mt.__newi..." undo

2 May 2014

24 April 2014

23 April 2014

  • curprev 20:4820:48, 23 April 2014m>Jackmcbarn 323 bytes −16 setting doesn't need exception for name undo
  • curprev 20:4620:46, 23 April 2014m>Jackmcbarn 339 bytes −118 don't bother saving old __index or __newindex undo
  • curprev 20:3820:38, 23 April 2014m>Jackmcbarn 457 bytes +457 Created page with 'local mt = getmetatable(_G) or {} local oldIndex = mt.__index or function() return nil end mt.__index = function(t, k) if k ~= 'name' and k ~= 'arg' then erro...'