summaryrefslogtreecommitdiff
path: root/lib/irb/context.rb
diff options
context:
space:
mode:
authorSummer ☀️ <[email protected]>2023-08-20 04:09:50 -0600
committerHiroshi SHIBATA <[email protected]>2023-08-29 18:15:05 +0900
commit0cd92819c933ac3aea8eb173986b6478fcd1fbfe (patch)
treef6e963fe1c632303b0cd96d2f829ab02c5c973d5 /lib/irb/context.rb
parent9126dd4b0e5f7410b32a93c753b06d970c641e04 (diff)
[ruby/irb] Remove unused `PROMPT_N`
(https://github.com/ruby/irb/pull/685) https://github.com/ruby/irb/commit/66e69fa0dc
Diffstat (limited to 'lib/irb/context.rb')
-rw-r--r--lib/irb/context.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/irb/context.rb b/lib/irb/context.rb
index 43d9b53435..6d6261e60b 100644
--- a/lib/irb/context.rb
+++ b/lib/irb/context.rb
@@ -229,8 +229,6 @@ module IRB
#
# See IRB@Customizing+the+IRB+Prompt for more information.
attr_accessor :prompt_c
- # See IRB@Customizing+the+IRB+Prompt for more information.
- attr_accessor :prompt_n
# Can be either the default <code>IRB.conf[:AUTO_INDENT]</code>, or the
# mode set by #prompt_mode=
#
@@ -414,7 +412,6 @@ module IRB
@prompt_i = pconf[:PROMPT_I]
@prompt_s = pconf[:PROMPT_S]
@prompt_c = pconf[:PROMPT_C]
- @prompt_n = pconf[:PROMPT_N]
@return_format = pconf[:RETURN]
@return_format = "%s\n" if @return_format == nil
if ai = pconf.include?(:AUTO_INDENT)